UNPKG

274 BJavaScriptView Raw
1var test = require('../');
2
3test('parent test', function (t) {
4 t.plan(2);
5 t.test('first child', function (t) {
6 t.plan(1);
7 t.pass('pass first child');
8 })
9
10 t.test(function (t) {
11 t.plan(1);
12 t.pass('pass second child');
13 })
14})