Skip to content

Commit bc03743

Browse files
grncdrJames Halliday
authored and
James Halliday
committed
Add failing test for planning # of subtests
1 parent 48964a6 commit bc03743

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

test/subtest_plan.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
var test = require('../');
2+
3+
test('parent', function (t) {
4+
t.plan(3)
5+
6+
var firstChildRan = false;
7+
8+
t.pass('assertion in parent');
9+
10+
t.test('first child', function (t) {
11+
t.plan(1);
12+
t.pass('pass first child');
13+
firstChildRan = true;
14+
});
15+
16+
t.test('second child', function (t) {
17+
t.plan(2);
18+
t.ok(firstChildRan, 'first child ran');
19+
t.pass('pass second child');
20+
});
21+
});

0 commit comments

Comments
 (0)