Integrate reports with circle ci

This commit is contained in:
Chi Vinh Le
2017-10-17 21:59:50 +07:00
parent 427c6e10a4
commit 77dae9922c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ test:
override:
# Run the tests using the junit reporter.
- MOCHA_FILE=$CIRCLE_TEST_REPORTS/junit/test-results.xml MOCHA_REPORTER=mocha-junit-reporter yarn test
- yarn e2e-ci
- REPORTS_FOLDER=$CIRCLE_TEST_REPORTS/browserstack yarn e2e-ci
deployment:
release:
+1 -1
View File
@@ -4,7 +4,7 @@ const {
const nightwatch_config = {
src_folders: './test/e2e/specs/',
output_folder: './test/e2e/reports',
output_folder: process.env.REPORTS_FOLDER || './test/e2e/reports',
page_objects_path: './test/e2e/page_objects',
globals_path: './test/e2e/globals',
+1 -1
View File
@@ -4,7 +4,7 @@ const {
module.exports = {
src_folders: './test/e2e/specs/',
output_folder: './test/e2e/reports',
output_folder: process.env.REPORTS_FOLDER || './test/e2e/reports',
page_objects_path: './test/e2e/page_objects',
globals_path: './test/e2e/globals',
selenium: {