From 1d40f1273a6d2d0e8223afc852da5fcc3f13fd6d Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Mon, 15 Jun 2020 11:32:00 +0100 Subject: [PATCH] Pass param --- apps/remix-ide/ci/browser_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/ci/browser_tests.sh b/apps/remix-ide/ci/browser_tests.sh index 3ab394d5b1..38bd61c9a2 100755 --- a/apps/remix-ide/ci/browser_tests.sh +++ b/apps/remix-ide/ci/browser_tests.sh @@ -21,8 +21,8 @@ setupRemixd sleep 5 -npm run nightwatch_parallel || TEST_EXITCODE=1 -npm run nightwatch_local_runAndDeploy || TEST_EXITCODE=1 +TESTFILES=$(circleci tests glob "./test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings) +npm run nightwatch_local_chrome -- $TESTFILES || TEST_EXITCODE=1 echo "$TEST_EXITCODE" if [ "$TEST_EXITCODE" -eq 1 ]