coronamap/node_modules/tape/test/require/test-a.js
2020-06-14 00:00:00 -07:00

7 lines
194 B
JavaScript

var tape = require('../..');
tape.test('test-a', function (t) {
t.ok(global.module_a, 'module-a loaded in same context');
t.pass('test ran after module-a was loaded');
t.end();
});