From bb20974488ddc3432532390fa9f226fad4b851a8 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Tue, 18 Aug 2020 16:33:07 +0100 Subject: [PATCH] Debug circleci --- .circleci/config.yml | 13 +++++++------ apps/remix-ide-e2e/nightwatch.ts | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fb3e81e5f4..9db1daa4d8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,10 +66,11 @@ jobs: command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide-e2e/seleniumConfig.js background: true - run: ./apps/remix-ide/ci/browser_tests_chrome.sh + - run: ls - store_test_results: - path: ./apps/remix-ide-e2e/src/reports/tests + path: ./reports/tests - store_artifacts: - path: ./apps/remix-ide-e2e/src/reports/screenshots + path: ./reports/screenshots remix-ide-firefox: docker: @@ -110,9 +111,9 @@ jobs: command: sudo dpkg -i firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb - run: ./apps/remix-ide/ci/browser_tests_firefox.sh - store_test_results: - path: ./apps/remix-ide-e2e/src/reports/tests + path: ./reports/tests - store_artifacts: - path: ./apps/remix-ide-e2e/src/reports/screenshots + path: ./reports/screenshots remix-ide-run-deploy: docker: @@ -154,9 +155,9 @@ jobs: background: true - run: ./apps/remix-ide/ci/browser_tests_run_deploy.sh - store_test_results: - path: ./apps/remix-ide-e2e/src/reports/tests + path: ./reports/tests - store_artifacts: - path: ./apps/remix-ide-e2e/src/reports/screenshots + path: ./reports/screenshots deploy-remix-live: diff --git a/apps/remix-ide-e2e/nightwatch.ts b/apps/remix-ide-e2e/nightwatch.ts index 2637eab3ee..e9af1d2866 100644 --- a/apps/remix-ide-e2e/nightwatch.ts +++ b/apps/remix-ide-e2e/nightwatch.ts @@ -5,7 +5,7 @@ const metamaskExtension = Buffer.from(crxFile).toString('base64') module.exports = { 'src_folders': ['dist/apps/remix-ide-e2e/src/tests'], - 'output_folder': 'apps/remix-ide-e2e/src/reports/tests', + 'output_folder': './reports/tests', 'custom_commands_path': ['dist/apps/remix-ide-e2e/src/commands'], 'custom_assertions_path': '', 'page_objects_path': '', @@ -21,7 +21,7 @@ module.exports = { }, 'screenshots': { 'enabled': true, - 'path': 'apps/remix-ide-e2e/src/reports/screenshots', + 'path': './reports/screenshots', 'on_failure': true, 'on_error': true },