Skip to content

Commit fa706ae

Browse files
author
James Halliday
committed
fix harness test
1 parent 890382d commit fa706ae

File tree

2 files changed

+23
-21
lines changed

2 files changed

+23
-21
lines changed

index.js

+21-19
Original file line numberDiff line numberDiff line change
@@ -22,32 +22,34 @@ exports = module.exports = (function () {
2222
};
2323
})();
2424

25-
function createExitHarness () {
25+
function createExitHarness (conf) {
26+
if (!conf) conf = {};
2627
var harness = createHarness();
2728
var stream = harness.createStream();
2829
stream.pipe(createDefaultStream());
2930

3031
var ended = false;
3132
stream.on('end', function () { ended = true });
3233

33-
if (process.exit && process._getActiveHandles) {
34-
var iv = setInterval(function () {
35-
if (process._getActiveHandles().length > 1) return;
36-
37-
clearInterval(iv);
38-
setTimeout(function () {
39-
if (ended) return;
40-
for (var i = 0; i < harness._tests.length; i++) {
41-
var t = harness._tests[i];
42-
t._exit();
43-
}
44-
}, 100);
45-
46-
setTimeout(function () {
47-
process.exit(harness._exitCode);
48-
}, 105);
49-
});
50-
}
34+
if (conf.exit === false) return harness;
35+
if (!process.exit || !process._getActiveHandles) return harness;
36+
37+
var iv = setInterval(function () {
38+
if (process._getActiveHandles().length > 1) return;
39+
40+
clearInterval(iv);
41+
setTimeout(function () {
42+
if (ended) return;
43+
for (var i = 0; i < harness._tests.length; i++) {
44+
var t = harness._tests[i];
45+
t._exit();
46+
}
47+
}, 100);
48+
49+
setTimeout(function () {
50+
process.exit(harness._exitCode);
51+
}, 105);
52+
});
5153
return harness;
5254
}
5355

test/harness.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
var test = require('../');
2-
var harness = test.createHarness({ exit : false });
1+
var test = require('tap').test;
2+
var harness = require('../').createHarness({ exit: false });
33

44
// minimal write stream mockery
55
var collector = {

0 commit comments

Comments
 (0)