Skip to content

Commit c9ca5be

Browse files
author
James Halliday
committed
nested tests work
1 parent ddd2535 commit c9ca5be

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

example/nested.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test('nested array test', function (t) {
1616
}
1717
});
1818

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

index.js

+14-2
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,25 @@ function createHarness () {
3838
else run();
3939
});
4040

41-
t.on('end', function () {
41+
t.on('test', function (st) {
42+
pending.unshift(function () {
43+
running = true;
44+
out.push(st);
45+
st.run();
46+
47+
st.on('end', onend);
48+
});
49+
});
50+
51+
t.on('end', onend);
52+
53+
function onend () {
4254
running = false;
4355
process.nextTick(function () {
4456
if (pending.length) pending.shift()()
4557
else out.close()
4658
});
47-
});
59+
}
4860
};
4961

5062
return out;

lib/test.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,9 @@ Test.prototype.test = function (name, cb) {
2323
name = '(anonymous)';
2424
}
2525

26-
/*
27-
var t = new Test(name);
28-
29-
t.on('plan', function (n) {
30-
self._plan += n;
31-
});
32-
*/
26+
var t = new Test(name, { indent : self.indent + 2 });
27+
t.run = function () { cb(t) };
28+
self.emit('test', t);
3329
};
3430

3531
Test.prototype.comment = function (msg) {

0 commit comments

Comments
 (0)