Skip to content

Commit 9d64ad3

Browse files
grncdrJames Halliday
authored and
James Halliday
committed
Add test for async asserts in subtests ref #42
It passes on this branch with no changes, w00t
1 parent 8b59a80 commit 9d64ad3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

test/subtest_and_async.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
var test = require('../');
2+
3+
var asyncFunction = function (callback) {
4+
setTimeout(callback, Math.random * 50);
5+
};
6+
7+
test('master test', function (t) {
8+
t.test('subtest 1', function (t) {
9+
t.pass('subtest 1 before async call');
10+
asyncFunction(function () {
11+
t.pass('subtest 1 in async callback');
12+
t.end();
13+
})
14+
});
15+
16+
t.test('subtest 2', function (t) {
17+
t.pass('subtest 2 before async call');
18+
asyncFunction(function () {
19+
t.pass('subtest 2 in async callback');
20+
t.end();
21+
})
22+
});
23+
});

0 commit comments

Comments
 (0)