We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad90739 commit bd1db4eCopy full SHA for bd1db4e
index.js
@@ -26,6 +26,7 @@ function createHarness (conf_) {
26
var count = 0;
27
28
var began = false;
29
+ var closed = false;
30
var out = new Render();
31
32
var test = function (name, conf, cb) {
@@ -36,6 +37,10 @@ function createHarness (conf_) {
36
37
if (conf.exit !== false) {
38
onexit(function (code) {
39
t._exit();
40
+ if (!closed) {
41
+ closed = true
42
+ out.close();
43
+ }
44
if (!code && !t._ok) process.exit(1);
45
});
46
}
@@ -83,7 +88,8 @@ function createHarness (conf_) {
83
88
process.nextTick(function () {
84
89
running = false;
85
90
if (pending.length) return pending.shift()();
86
- if (count === 0) {
91
+ if (count === 0 && !closed) {
92
87
93
out.close();
94
95
if (conf.exit !== false && canExit && !t._ok) {
0 commit comments