We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f29a8 commit 8b59a80Copy full SHA for 8b59a80
test/add-subtest-async.js
@@ -0,0 +1,11 @@
1
+var test = require('../')
2
+
3
+test('parent', function (t) {
4
+ t.pass('parent');
5
+ setTimeout(function () {
6
+ t.test('child', function (t) {
7
+ t.pass('child');
8
+ t.end();
9
+ });
10
+ }, 100)
11
+})
0 commit comments