blob: 74b4d8a01ad9adc83c600a6eabb73f33d563c556 [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)
})