UNPKG

160 BJavaScriptView Raw
1import tape from '../../index.js';
2
3tape.test('mjs-c', function (t) {
4 t.ok(global.mjs_b, 'test ran after mjs-b');
5 t.end();
6 global.mjs_c = true;
7});