test-a.js 200 B

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