Commit 7354c23a authored by ioedeveloper's avatar ioedeveloper

Changed nightwatch reports directory

parent c001a39d
...@@ -32,12 +32,9 @@ jobs: ...@@ -32,12 +32,9 @@ jobs:
name: Start Selenium name: Start Selenium
command: ./node_modules/.bin/selenium-standalone start --config=../remix-ide/seleniumConfig.js command: ./node_modules/.bin/selenium-standalone start --config=../remix-ide/seleniumConfig.js
background: true background: true
- run:
name: Setup Directory For Saving Test Results
command: mkdir -p ./reports/test_results/chrome
- run: ./ci/browser_tests_chrome.sh - run: ./ci/browser_tests_chrome.sh
- store_test_results: - store_test_results:
path: ./reports/test_results/chrome path: ./reports/tests
- store_artifacts: - store_artifacts:
path: ./reports/screenshots path: ./reports/screenshots
...@@ -75,12 +72,9 @@ jobs: ...@@ -75,12 +72,9 @@ jobs:
- run: - run:
name: Install Firefox name: Install Firefox
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:
name: Setup Directory For Saving Test Results
command: mkdir -p ./reports/test_results/firefox
- run: ./ci/browser_tests_firefox.sh - run: ./ci/browser_tests_firefox.sh
- store_test_results: - store_test_results:
path: ./reports/test_results/firefox path: ./reports/tests
- store_artifacts: - store_artifacts:
path: ./reports/screenshots path: ./reports/screenshots
......
...@@ -6,7 +6,7 @@ const metamaskExtension = new Buffer.from(crxFile).toString('base64') // eslint- ...@@ -6,7 +6,7 @@ const metamaskExtension = new Buffer.from(crxFile).toString('base64') // eslint-
module.exports = { module.exports = {
'src_folders': ['test-browser/tests'], 'src_folders': ['test-browser/tests'],
'output_folder': 'reports', 'output_folder': './reports/tests',
'custom_commands_path': ['test-browser/commands'], 'custom_commands_path': ['test-browser/commands'],
'custom_assertions_path': '', 'custom_assertions_path': '',
'page_objects_path': '', 'page_objects_path': '',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment