indexworkspace2
bunsenstraat 3 years ago
parent ff596b545e
commit d1ca0018d1
  1. 11
      .circleci/config.yml
  2. 5
      apps/remix-ide/ci/browser_tests_plugin_api.sh

@ -276,11 +276,18 @@ jobs:
- run: npm install
- run: npx nx build remix-ide --with-deps
- run: npx nx build remix-ide-e2e-src-local-plugin
- run:
name: Download Selenium
command: ./node_modules/.bin/selenium-standalone install --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
- run:
name: Start Selenium
command: ./node_modules/.bin/selenium-standalone start --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com
background: true
- run: ./apps/remix-ide/ci/browser_tests_plugin_api.sh
- store_test_results:
path: /tmp/test-results
path: ./reports/tests
- store_artifacts:
path: /tmp/artifacts
path: ./reports/screenshots
deploy-remix-live:
docker:
# specify the version you desire here

@ -8,7 +8,10 @@ TEST_EXITCODE=0
npm run serve &
npx nx serve remix-ide-e2e-src-local-plugin &
sleep 5 &
sleep 5
npm run build:e2e
npm run nightwatch_local_pluginApi || TEST_EXITCODE=1
echo "$TEST_EXITCODE"

Loading…
Cancel
Save