add-subtest-async.js 198 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 var test = require('../') test('parent', function (t) { t.pass('parent'); setTimeout(function () { t.test('child', function (t) { t.pass('child'); t.end(); }); }, 100) })