Skip to content

Commit 9241450

Browse files
committed
NO MERGE CONFLICT
2 parents 19d7f88 + 359a67f commit 9241450

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

index.js

+18-12
Original file line numberDiff line numberDiff line change
@@ -16,49 +16,53 @@ var canExit = typeof process !== 'undefined' && process
1616
function createHarness (conf_) {
1717
var pending = [];
1818
var running = false;
19-
19+
var count = 0;
20+
2021
var began = false;
2122
var out = new Render();
22-
23+
2324
var test = function (name, conf, cb) {
25+
count++;
2426
var t = new Test(name, conf, cb);
2527
if (!conf || typeof conf !== 'object') conf = conf_ || {};
26-
28+
2729
if (conf.exit !== false && canEmitExit) {
2830
process.on('exit', function (code) {
2931
t._exit();
3032
out.close();
3133
if (code === 0 && !t._ok) process.exit(1);
3234
});
3335
}
34-
36+
3537
process.nextTick(function () {
3638
if (!out.piped) out.pipe(createDefaultStream());
3739
if (!began) out.begin();
3840
began = true;
39-
41+
4042
var run = function () {
4143
running = true;
4244
out.push(t);
4345
t.run();
4446
};
45-
47+
4648
if (running || pending.length) {
4749
pending.push(run);
4850
}
4951
else run();
5052
});
51-
53+
5254
t.on('test', function sub (st) {
55+
count++;
5356
st.on('test', sub);
5457
st.on('end', onend);
5558
});
56-
59+
5760
t.on('end', onend);
58-
61+
5962
return t;
60-
63+
6164
function onend () {
65+
count--;
6266
if (this._progeny.length) {
6367
var unshifts = this._progeny.map(function (st) {
6468
return function () {
@@ -73,14 +77,16 @@ function createHarness (conf_) {
7377
process.nextTick(function () {
7478
running = false;
7579
if (pending.length) return pending.shift()();
76-
out.close();
80+
if (count === 0) {
81+
out.close();
82+
}
7783
if (conf.exit !== false && canExit && !t._ok) {
7884
process.exit(1);
7985
}
8086
});
8187
}
8288
};
83-
89+
8490
test.stream = out;
8591
return test;
8692
}

0 commit comments

Comments
 (0)