UNPKG

209 BJavaScriptView Raw
1'use strict';
2
3var tape = require('../..');
4
5tape.test('test-a', function (t) {
6 t.ok(global.module_a, 'module-a loaded in same context');
7 t.pass('test ran after module-a was loaded');
8 t.end();
9});