Skip to content

Commit

Permalink
fix: update to exitCode 1 on error
Browse files Browse the repository at this point in the history
  • Loading branch information
tzachbon committed Mar 15, 2022
1 parent e1ac110 commit f0dbaa1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/test-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ run()
process.exitCode = exitCode;
})
.catch((error) => {
process.exitCode = 1;
console.error(error);
});

Expand Down

0 comments on commit f0dbaa1

Please sign in to comment.