Skip to content

Commit a5e709e

Browse files
author
James Halliday
committed
nested example completely works
1 parent c4dc7ac commit a5e709e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

example/nested.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ test('nested array test', function (t) {
1818

1919
t.test('inside test', function (q) {
2020
q.plan(2);
21-
q.ok(true);
21+
q.ok(true, 'inside ok');
2222

2323
setTimeout(function () {
24-
q.ok(true);
24+
q.ok(true, 'inside delayed');
2525
}, 3000);
2626
});
2727

lib/results.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function Results (stream) {
4343
Results.prototype.push = function (t, parentT) {
4444
var self = this;
4545
var write = function (s) { self.stream.queue(s) };
46-
t.on('run', function () {
46+
t.on('prerun', function () {
4747
write('# ' + t.name + '\n');
4848
});
4949
if (parentT) {
@@ -64,7 +64,7 @@ Results.prototype.push = function (t, parentT) {
6464
onend();
6565
});
6666
self.push(st, t);
67-
if (subtests === 1) st.run();
67+
if (subtests === 1) nextTick(function () { st.run() });
6868
});
6969

7070
t.on('result', function (res) {

lib/test.js

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Test.prototype.run = function () {
4747
if (this._skip) {
4848
return this.end();
4949
}
50+
this.emit('prerun');
5051
try {
5152
this._cb(this);
5253
}

0 commit comments

Comments
 (0)