From 83183e050382ed725b44c5870918e590539acc67 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Fri, 17 Feb 2023 19:25:54 +0100 Subject: [PATCH] mv script --- .circleci/config.yml | 3 --- apps/remix-ide/ci/browser_test.sh | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3f255b1ca8..e67c148d6a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,7 +74,6 @@ jobs: - run: cd dist/libs/remix-tests && yarn add @remix-project/remix-simulator ../../libs/remix-simulator - run: cd dist/libs/remix-tests && ./bin/remix-tests ./../../../libs/remix-tests/tests/examples_0/assert_ok_test.sol - run: node dist/libs/remix-tests/bin/remix-tests ./libs/remix-tests/tests/examples_0/assert_ok_test.sol - - run: npx http-server -p 9090 --cors='*' ./node_modules > http.log 2>&1 & - run: yarn run test:libs remix-ide-browser: @@ -133,7 +132,6 @@ jobs: name: Start Selenium command: yarn run selenium background: true - - run: npx http-server -p 9090 --cors='*' ./node_modules > http.log 2>&1 & - run: ./apps/remix-ide/ci/<< parameters.script >> << parameters.browser >> << parameters.jobsize >> << parameters.job >> - store_test_results: path: ./reports/tests @@ -180,7 +178,6 @@ jobs: name: Start Selenium command: yarn run selenium background: true - - run: npx http-server -p 9090 --cors='*' ./node_modules > http.log 2>&1 & - run: ./apps/remix-ide/ci/<< parameters.script >> - store_test_results: path: ./reports/tests diff --git a/apps/remix-ide/ci/browser_test.sh b/apps/remix-ide/ci/browser_test.sh index 600e794c7f..9e846eb94a 100755 --- a/apps/remix-ide/ci/browser_test.sh +++ b/apps/remix-ide/ci/browser_test.sh @@ -8,6 +8,7 @@ BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} echo "$BUILD_ID" TEST_EXITCODE=0 yarn run ganache-cli & +npx http-server -p 9090 --cors='*' ./node_modules & yarn run serve:production & echo 'sharing folder: ' $PWD '/apps/remix-ide/contracts' &