File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed
Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ npm run app:start --prefix frontend
1818
1919npm run app:wait --prefix frontend
2020
21+ set +e
2122npm run test:accessibility -w tests/accessibility
2223TEST_EXIT_CODE=$?
24+ set -e
2325echo " TEST_EXIT_CODE=$TEST_EXIT_CODE "
2426
2527cp -r ./tests/accessibility/.reports/accessibility ./tests/acceptance-test-report
Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ set -euo pipefail
44cd " $( git rev-parse --show-toplevel) "
55npx playwright install --with-deps > /dev/null
66cd tests/test-team
7+
8+ set +e
79npm run test:api
810TEST_EXIT_CODE=$?
11+ set -e
912echo " TEST_EXIT_CODE=$TEST_EXIT_CODE "
1013
1114cp -r ./playwright-report ../acceptance-test-report
Original file line number Diff line number Diff line change @@ -4,8 +4,12 @@ set -euo pipefail
44cd " $( git rev-parse --show-toplevel) "
55npx playwright install --with-deps > /dev/null
66cd tests/test-team
7+
8+ set +e
79npm run test:local-ui
810TEST_EXIT_CODE=$?
11+ set -e
12+
913echo " TEST_EXIT_CODE=$TEST_EXIT_CODE "
1014
1115cp -r ./playwright-report ../acceptance-test-report
Original file line number Diff line number Diff line change @@ -4,8 +4,12 @@ set -euo pipefail
44cd " $( git rev-parse --show-toplevel) "
55npx playwright install --with-deps > /dev/null
66cd tests/test-team
7+
8+ set +e
79npm run test:e2e
810TEST_EXIT_CODE=$?
11+ set -e
12+
913echo " TEST_EXIT_CODE=$TEST_EXIT_CODE "
1014
1115cp -r ./playwright-report ../acceptance-test-report
You can’t perform that action at this time.
0 commit comments