Skip to content

Commit

Permalink
JavaScript (v3): Tests: Ensure integ test exit code comes from tests,…
Browse files Browse the repository at this point in the history
… not outputs.
  • Loading branch information
cpyle0819 authored and scmacdon committed Sep 16, 2024
1 parent 5c6cb7e commit 783a64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascriptv3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"scripts": {
"test": "npm run test --workspaces --if-present",
"integration-test": "npm run integration-test --workspaces --if-present -- --silent; npm run merge-test-results; npm run log-tests",
"integration-test": "npm run integration-test --workspaces --if-present -- --silent; exit_code=$?; npm run merge-test-results; npm run log-tests; exit ${exit_code:-99}",
"merge-test-results": "jrm test-results.xml \"**/test_results/**/*.junit.xml\"",
"log-tests": "cat test-results.xml",
"lint": "lint-staged",
Expand Down

0 comments on commit 783a64c

Please sign in to comment.