Debug circleci

nightwatch-ts
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
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:

@ -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
},

Loading…
Cancel
Save