UNPKG

tape

Version:

tap-producing test harness for node and browsers

14 lines (11 loc) 206 B
'use strict'; var test = require('../'); test('parent', function (t) { t.pass('parent'); setTimeout(function () { t.test('child', function (st) { st.pass('child'); st.end(); }); }, 100); });