coronamap/node_modules/tape/test/require/test-a.js
2022-08-06 08:12:21 -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();
});