Skip to content

Commit 35f29a8

Browse files
grncdrJames Halliday
authored and
James Halliday
committed
Add second @spion patch
1 parent a43860b commit 35f29a8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lib/test.js

+7
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,18 @@ Test.prototype.test = function (name, opts, cb) {
6969
t.on('prerun', function () {
7070
self.assertCount++;
7171
})
72+
7273
if (!self._pendingAsserts()) {
7374
nextTick(function () {
7475
self.end();
7576
});
7677
}
78+
79+
nextTick(function() {
80+
if (!self._plan && self.pendingCount == self._progeny.length) {
81+
self.end();
82+
}
83+
});
7784
};
7885

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

0 commit comments

Comments
 (0)