Debug circleci

pull/343/head
ioedeveloper 4 years ago
parent b09243159e
commit bb20974488
  1. 13
      .circleci/config.yml
  2. 4
      apps/remix-ide-e2e/nightwatch.ts

@ -66,10 +66,11 @@ jobs:
command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide-e2e/seleniumConfig.js command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide-e2e/seleniumConfig.js
background: true background: true
- run: ./apps/remix-ide/ci/browser_tests_chrome.sh - run: ./apps/remix-ide/ci/browser_tests_chrome.sh
- run: ls
- store_test_results: - store_test_results:
path: ./apps/remix-ide-e2e/src/reports/tests path: ./reports/tests
- store_artifacts: - store_artifacts:
path: ./apps/remix-ide-e2e/src/reports/screenshots path: ./reports/screenshots
remix-ide-firefox: remix-ide-firefox:
docker: docker:
@ -110,9 +111,9 @@ jobs:
command: sudo dpkg -i firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb command: sudo dpkg -i firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb
- run: ./apps/remix-ide/ci/browser_tests_firefox.sh - run: ./apps/remix-ide/ci/browser_tests_firefox.sh
- store_test_results: - store_test_results:
path: ./apps/remix-ide-e2e/src/reports/tests path: ./reports/tests
- store_artifacts: - store_artifacts:
path: ./apps/remix-ide-e2e/src/reports/screenshots path: ./reports/screenshots
remix-ide-run-deploy: remix-ide-run-deploy:
docker: docker:
@ -154,9 +155,9 @@ jobs:
background: true background: true
- run: ./apps/remix-ide/ci/browser_tests_run_deploy.sh - run: ./apps/remix-ide/ci/browser_tests_run_deploy.sh
- store_test_results: - store_test_results:
path: ./apps/remix-ide-e2e/src/reports/tests path: ./reports/tests
- store_artifacts: - store_artifacts:
path: ./apps/remix-ide-e2e/src/reports/screenshots path: ./reports/screenshots
deploy-remix-live: deploy-remix-live:

@ -5,7 +5,7 @@ const metamaskExtension = Buffer.from(crxFile).toString('base64')
module.exports = { module.exports = {
'src_folders': ['dist/apps/remix-ide-e2e/src/tests'], '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_commands_path': ['dist/apps/remix-ide-e2e/src/commands'],
'custom_assertions_path': '', 'custom_assertions_path': '',
'page_objects_path': '', 'page_objects_path': '',
@ -21,7 +21,7 @@ module.exports = {
}, },
'screenshots': { 'screenshots': {
'enabled': true, 'enabled': true,
'path': 'apps/remix-ide-e2e/src/reports/screenshots', 'path': './reports/screenshots',
'on_failure': true, 'on_failure': true,
'on_error': true 'on_error': true
}, },

Loading…
Cancel
Save