From 6ebec95a4e2e4733c88f5fb1b1629b70cbfd7e70 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Wed, 8 Apr 2020 09:34:14 +0000 Subject: [PATCH] Separate parallel and deploy tests shell command --- ci/browser_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/browser_tests.sh b/ci/browser_tests.sh index 661ad53985..ed89d8540a 100755 --- a/ci/browser_tests.sh +++ b/ci/browser_tests.sh @@ -21,7 +21,8 @@ setupRemixd sleep 5 -npm run nightwatch_parallel & npm run nightwatch_local_runAndDeploy || TEST_EXITCODE=1 +npm run nightwatch_parallel || TEST_EXITCODE=1 +npm run nightwatch_local_runAndDeploy || TEST_EXITCODE=1 echo "$TEST_EXITCODE" if [ "$TEST_EXITCODE" -eq 1 ]