coronamap/node_modules/tape/test/add-subtest-async.js
2020-06-14 00:00:00 -07:00

11 lines
230 B
JavaScript

var test = require('../');
test('parent', function (t) {
t.pass('parent');
setTimeout(function () {
t.test('child', function (st) {
st.pass('child');
st.end();
});
}, 100);
});