Skip to content

Commit 8a80302

Browse files
author
James Halliday
committed
getting further into the child ordering test
1 parent c9def14 commit 8a80302

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

lib/results.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,7 @@ Results.prototype.push = function (t, parentT) {
5353
t.on('test', function (st) {
5454
subtests ++;
5555
st.on('end', function () {
56-
self.running --;
5756
subtests --;
58-
if (subtests === 0 && !plan) t.emit('end');
59-
nextTick(function () { onend.call(t) });
6057
});
6158
self.push(st, t);
6259
if (subtests === 1) nextTick(function () { st.run() });
@@ -80,10 +77,10 @@ Results.prototype.push = function (t, parentT) {
8077
if (subtests !== 0) return;
8178
self.running --;
8279

83-
if (!self.running && self.tests.length === 0) {
80+
if (self.running === 0 && self.tests.length === 0) {
8481
self.close();
8582
}
86-
else if (!self.running) {
83+
else if (self.running === 0) {
8784
var t = self.tests.shift();
8885
t.run();
8986
}

0 commit comments

Comments
 (0)