From e1efa818b7c39d5d166fb647012efa82d085c243 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Wed, 12 Aug 2020 11:55:28 +0100 Subject: [PATCH] Fix firefox shell script --- apps/remix-ide/ci/browser_tests_firefox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/ci/browser_tests_firefox.sh b/apps/remix-ide/ci/browser_tests_firefox.sh index 847401d02f..d2058c1afb 100755 --- a/apps/remix-ide/ci/browser_tests_firefox.sh +++ b/apps/remix-ide/ci/browser_tests_firefox.sh @@ -23,7 +23,7 @@ sleep 5 npx nx build remix-ide-e2e -TESTFILES=$(circleci tests glob "./apps/remix-ide/test-browser/tests/**/*.test.js" | circleci tests split --split-by=timings) +TESTFILES=$(circleci tests glob "dist/apps/remix-ide-e2e/src/tests/**/*.test.js" | circleci tests split --split-by=timings) for TESTFILE in $TESTFILES; do npx nx e2e remix-ide-e2e --filePath=$TESTFILE --env=firefox || TEST_EXITCODE=1 done