Skip to content

Commit 2f8a822

Browse files
author
James Halliday
committed
avoid max listeners warnings, test passes
1 parent 4058f75 commit 2f8a822

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

index.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ var canEmitExit = typeof process !== 'undefined' && process
1212
var canExit = typeof process !== 'undefined' && process
1313
&& typeof process.exit === 'function'
1414
;
15+
var onexit = (function () {
16+
var stack = [];
17+
if (canEmitExit) process.on('exit', function (code) {
18+
for (var i = 0; i < stack.length; i++) stack[i](code);
19+
});
20+
return function (cb) { stack.push(cb) };
21+
})();
1522

1623
function createHarness (conf_) {
1724
var pending = [];
@@ -26,8 +33,8 @@ function createHarness (conf_) {
2633
var t = new Test(name, conf, cb);
2734
if (!conf || typeof conf !== 'object') conf = conf_ || {};
2835

29-
if (conf.exit !== false && canEmitExit) {
30-
process.on('exit', function (code) {
36+
if (conf.exit !== false) {
37+
onexit(function (code) {
3138
t._exit();
3239
out.close();
3340
if (!code && !t._ok) process.exit(1);

0 commit comments

Comments
 (0)