Skip to content

Commit 3f94e68

Browse files
committed
[Fix] proper exit behavior in node v0.6
- show the summary at the end
1 parent 1642ae2 commit 3f94e68

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function createExitHarness(conf) {
7373

7474
process.on('exit', function (code) {
7575
// let the process exit cleanly.
76-
if (code !== 0) {
76+
if (typeof code === 'number' && code !== 0) {
7777
return;
7878
}
7979

@@ -86,6 +86,8 @@ function createExitHarness(conf) {
8686
}
8787
}
8888
harness.close();
89+
90+
process.removeAllListeners('exit'); // necessary for node v0.6
8991
process.exit(code || harness._exitCode);
9092
});
9193

0 commit comments

Comments
 (0)