blob: 3a5df3fbdff88a32e5b2052581fddcb3af812b18 [file] [log] [blame]
var test = require('../');
test('parent test', function (t) {
t.plan(2);
t.test('first child', function (t) {
t.plan(1);
t.pass('pass first child');
})
t.test(function (t) {
t.plan(1);
t.pass('pass second child');
})
})