Skip to content

Commit

Permalink
subcount test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Mar 5, 2014
1 parent db1baf0 commit e98ead5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/subcount.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
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');
})
})

0 comments on commit e98ead5

Please sign in to comment.