Skip to content

Commit 5ec8f42

Browse files
author
James Halliday
committed
passing one more of the exit tests
1 parent 876930e commit 5ec8f42

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

index.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@ exports = module.exports = (function () {
2020
if (!harness) {
2121
harness = createHarness();
2222
harness.createStream().pipe(createDefaultStream());
23+
24+
if (process.exit && process._getActiveHandles) {
25+
var iv = setInterval(function () {
26+
if (process._getActiveHandles().length > 1) return;
27+
clearInterval(iv);
28+
setTimeout(function () {
29+
process.exit(harness._exitCode);
30+
}, 100);
31+
});
32+
}
2333
}
2434
return harness.apply(this, arguments);
2535
};
@@ -32,7 +42,6 @@ exports.test = exports; // tap compat
3242
var exitInterval;
3343

3444
function createHarness (conf_) {
35-
var exitCode = 0;
3645
var results;
3746

3847
var test = function (name, conf, cb) {
@@ -47,7 +56,7 @@ function createHarness (conf_) {
4756
inspectCode(st_);
4857
});
4958
st.on('result', function (r) {
50-
if (!r.ok) exitCode = 1
59+
if (!r.ok) test._exitCode = 1
5160
});
5261
})(t);
5362

@@ -68,6 +77,7 @@ function createHarness (conf_) {
6877
only = true;
6978
return test.apply(null, arguments);
7079
};
80+
test._exitCode = 0;
7181

7282
return test;
7383
}

0 commit comments

Comments
 (0)