Changed nightwatch reports directory

pull/1/head
ioedeveloper 5 years ago
parent c001a39d9b
commit 7354c23a15
  1. 10
      .circleci/config.yml
  2. 2
      nightwatch.js

@ -32,12 +32,9 @@ jobs:
name: Start Selenium
command: ./node_modules/.bin/selenium-standalone start --config=../remix-ide/seleniumConfig.js
background: true
- run:
name: Setup Directory For Saving Test Results
command: mkdir -p ./reports/test_results/chrome
- run: ./ci/browser_tests_chrome.sh
- store_test_results:
path: ./reports/test_results/chrome
path: ./reports/tests
- store_artifacts:
path: ./reports/screenshots
@ -75,12 +72,9 @@ jobs:
- run:
name: Install Firefox
command: sudo dpkg -i firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb
- run:
name: Setup Directory For Saving Test Results
command: mkdir -p ./reports/test_results/firefox
- run: ./ci/browser_tests_firefox.sh
- store_test_results:
path: ./reports/test_results/firefox
path: ./reports/tests
- store_artifacts:
path: ./reports/screenshots

@ -6,7 +6,7 @@ const metamaskExtension = new Buffer.from(crxFile).toString('base64') // eslint-
module.exports = {
'src_folders': ['test-browser/tests'],
'output_folder': 'reports',
'output_folder': './reports/tests',
'custom_commands_path': ['test-browser/commands'],
'custom_assertions_path': '',
'page_objects_path': '',

Loading…
Cancel
Save