We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db661da commit 96b3a4aCopy full SHA for 96b3a4a
helpers/integration-tests/index.js
@@ -33,5 +33,7 @@ const runIntegrationTests = async () => {
33
34
runIntegrationTests()
35
.catch((err) => {
36
- throw err;
+ console.error(err.message);
37
+ // Unhandled exceptions in promises do not change the exit code for now
38
+ process.exit(1); //eslint-disable-line
39
});
0 commit comments