UNPKG

230 BJavaScriptView Raw
1var test = require('../');
2
3test('parent', function (t) {
4 t.pass('parent');
5 setTimeout(function () {
6 t.test('child', function (st) {
7 st.pass('child');
8 st.end();
9 });
10 }, 100);
11});