Skip to content

Commit e90aa13

Browse files
committed
CCM-10980: debugging
1 parent 0f125fa commit e90aa13

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

scripts/tests/accessibility.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ npm run app:start --prefix frontend
1818

1919
npm run app:wait --prefix frontend
2020

21+
set +e
2122
npm run test:accessibility -w tests/accessibility
2223
TEST_EXIT_CODE=$?
24+
set -e
2325
echo "TEST_EXIT_CODE=$TEST_EXIT_CODE"
2426

2527
cp -r ./tests/accessibility/.reports/accessibility ./tests/acceptance-test-report

scripts/tests/api.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ set -euo pipefail
44
cd "$(git rev-parse --show-toplevel)"
55
npx playwright install --with-deps > /dev/null
66
cd tests/test-team
7+
8+
set +e
79
npm run test:api
810
TEST_EXIT_CODE=$?
11+
set -e
912
echo "TEST_EXIT_CODE=$TEST_EXIT_CODE"
1013

1114
cp -r ./playwright-report ../acceptance-test-report

scripts/tests/ui-component.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ set -euo pipefail
44
cd "$(git rev-parse --show-toplevel)"
55
npx playwright install --with-deps > /dev/null
66
cd tests/test-team
7+
8+
set +e
79
npm run test:local-ui
810
TEST_EXIT_CODE=$?
11+
set -e
12+
913
echo "TEST_EXIT_CODE=$TEST_EXIT_CODE"
1014

1115
cp -r ./playwright-report ../acceptance-test-report

scripts/tests/ui-e2e.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ set -euo pipefail
44
cd "$(git rev-parse --show-toplevel)"
55
npx playwright install --with-deps > /dev/null
66
cd tests/test-team
7+
8+
set +e
79
npm run test:e2e
810
TEST_EXIT_CODE=$?
11+
set -e
12+
913
echo "TEST_EXIT_CODE=$TEST_EXIT_CODE"
1014

1115
cp -r ./playwright-report ../acceptance-test-report

0 commit comments

Comments
 (0)