From 67af6e47dfcdc749b79bc0e1fb7d43b9774536f2 Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 8 Nov 2021 10:20:59 +0100 Subject: [PATCH] fix selenium --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index acc9a0ffb8..5b5770fe29 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -76,11 +76,11 @@ jobs: - run: npx nx build remix-ide --with-deps - run: name: Download Selenium - command: ./node_modules/.bin/selenium-standalone install --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com + command: npm run selenium-install - 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 + command: npm run selenium + background: false - run: ./apps/remix-ide/ci/browser_tests_chrome_1.sh - store_test_results: path: ./reports/tests @@ -110,11 +110,11 @@ jobs: - run: npx nx build remix-ide --with-deps - run: name: Download Selenium - command: ./node_modules/.bin/selenium-standalone install --drivers.chrome.version=2.39 --drivers.chrome.baseURL=https://chromedriver.storage.googleapis.com + command: npm run selenium-install - 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 + command: npm run selenium + background: false - run: ./apps/remix-ide/ci/browser_tests_chrome_2.sh - store_test_results: path: ./reports/tests