We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78bbbc0 commit 24dc0faCopy full SHA for 24dc0fa
scripts/run_tests_in_ci.js
@@ -88,10 +88,6 @@ const argv = yargs.options({
88
console.log(stdout);
89
console.error(stderr);
90
writeLogs('Failure', name, stdout + '\n' + stderr);
91
-
92
- // NOTE: Set `process.exitCode` rather than calling `process.exit()` because
93
- // the latter will exit forcefully even if stdout/stderr have not been fully
94
- // flushed, leading to truncated output.
95
- process.exitCode = 1;
+ process.exit(1);
96
}
97
})();
0 commit comments