blob: ddc39f76f7d7c2ba67a1ae98457d2951d0ad14c4 [file] [log] [blame]
var test = require('../')
test('parent', function (t) {
t.pass('parent');
setTimeout(function () {
t.test('child', function (t) {
t.pass('child');
t.end();
});
}, 100)
})