coronamap/node_modules/tape/test/add-subtest-async.js
2022-08-06 08:09:54 -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);
});