UNPKG

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