UNPKG

tape

Version:

tap-producing test harness for node and browsers

12 lines (10 loc) 198 B
var test = require('../') test('parent', function (t) { t.pass('parent'); setTimeout(function () { t.test('child', function (t) { t.pass('child'); t.end(); }); }, 100) })