Skip to content

Commit e98ead5

Browse files
author
James Halliday
committed
subcount test
1 parent db1baf0 commit e98ead5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

test/subcount.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
var test = require('../');
2+
3+
test('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+
})

0 commit comments

Comments
 (0)