From 7354c23a153837145708339a8dc4769a7254a521 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Thu, 30 Apr 2020 09:22:40 +0000 Subject: [PATCH] Changed nightwatch reports directory --- .circleci/config.yml | 10 ++-------- nightwatch.js | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6bb6b52d62..eefaf2ea6e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/nightwatch.js b/nightwatch.js index c3067eebec..42e15ba9d6 100644 --- a/nightwatch.js +++ b/nightwatch.js @@ -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': '',