From 12696ad11f3a0096b98b84d0a1a450247e2575a1 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Tue, 3 Sep 2024 10:58:11 +0200 Subject: [PATCH] test offline --- apps/remixdesktop/run_ci_test.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/apps/remixdesktop/run_ci_test.sh b/apps/remixdesktop/run_ci_test.sh index 473b8a7f33..55613aab83 100755 --- a/apps/remixdesktop/run_ci_test.sh +++ b/apps/remixdesktop/run_ci_test.sh @@ -7,11 +7,10 @@ for TESTFILE in $TESTFILES; do yarn run test --test ./build-e2e/remixdesktop/test/tests/app/${TESTFILE} || TEST_EXITCODE=1 done -# if [ "$CIRCLE_NODE_INDEX" -eq 0 ]; then -# sh ./run_git_ui_isogit_tests.sh -# elif [ "$CIRCLE_NODE_INDEX" -eq 1 ]; then -# yarn test:offline -# fi + +if [ "$CIRCLE_NODE_INDEX" -eq 1 ]; then + yarn test:offline || TEST_EXITCODE=1 +fi echo "$TEST_EXITCODE" if [ "$TEST_EXITCODE" -eq 1 ]