diff --git a/apps/remix-ide/ci/browser_tests_chrome.sh b/apps/remix-ide/ci/browser_tests_chrome.sh index 00e31aa204..0a4ccd4e6f 100755 --- a/apps/remix-ide/ci/browser_tests_chrome.sh +++ b/apps/remix-ide/ci/browser_tests_chrome.sh @@ -8,7 +8,7 @@ setupRemixd () { echo 'sharing folder: ' echo $PWD remixd -s $PWD --remix-ide http://127.0.0.1:8080 & - cd ../../ + cd .. } BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} @@ -21,7 +21,7 @@ setupRemixd sleep 5 -TESTFILES=$(circleci tests glob "../test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings) +TESTFILES=$(circleci tests glob "./test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings) npm run nightwatch_local_chrome $TESTFILES echo "$TEST_EXITCODE" diff --git a/apps/remix-ide/ci/browser_tests_firefox.sh b/apps/remix-ide/ci/browser_tests_firefox.sh index dd6789b0b1..0467618ab0 100755 --- a/apps/remix-ide/ci/browser_tests_firefox.sh +++ b/apps/remix-ide/ci/browser_tests_firefox.sh @@ -8,7 +8,7 @@ setupRemixd () { echo 'sharing folder: ' echo $PWD remixd -s $PWD --remix-ide http://127.0.0.1:8080 & - cd ../../ + cd .. } BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} @@ -21,7 +21,7 @@ setupRemixd sleep 5 -TESTFILES=$(circleci tests glob "../remix-ide/test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings) +TESTFILES=$(circleci tests glob "./test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings) npm run nightwatch_local_firefox $TESTFILES echo "$TEST_EXITCODE"