Skip to content

Commit

Permalink
apply suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Dec 21, 2021
1 parent 459df00 commit cf4b697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ async function main() {

child.on('exit', async (code, signal) => {
children.delete(child)
if (code || signal !== null) {
if (code !== 0 || signal !== null) {
if (isFinalRun && hideOutput) {
// limit out to last 64kb so that we don't
// run out of log room in CI
Expand Down

0 comments on commit cf4b697

Please sign in to comment.