Skip to content

Commit 7c34bb3

Browse files
RReversermarijnh
authored andcommitted
Exit should wait for stdout (nodejs/node-v0.x-archive#1669).
1 parent 3779ed4 commit 7c34bb3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/run.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ driver.runTests(report);
1313
console.log(testsRun + " tests run in " + (+new Date - t0) + "ms");
1414

1515
if (failed) {
16+
process.stdout.once('drain', function () {
17+
process.exit(1);
18+
});
19+
1620
console.log(failed + " failures.");
17-
process.exit(1);
21+
} else {
22+
console.log("All passed.");
1823
}
19-
20-
console.log("All passed.");

0 commit comments

Comments
 (0)