ammended browserstack test

This commit is contained in:
Wyatt Johnson
2018-02-27 21:10:35 -07:00
parent 7c55088d9f
commit 6e946ca31d
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -126,6 +126,7 @@ jobs:
<<: *integration_job
environment:
<<: *integration_environment
BROWSERSTACK: true
E2E_BROWSERS: chrome
# test_integration_firefox will run the integration tests with firefox in
@@ -134,6 +135,7 @@ jobs:
<<: *integration_job
environment:
<<: *integration_environment
BROWSERSTACK: true
E2E_BROWSERS: firefox
# test_integration_edge will run the integration tests with edge in
@@ -142,6 +144,7 @@ jobs:
<<: *integration_job
environment:
<<: *integration_environment
BROWSERSTACK: true
E2E_BROWSERS: edge
# deploy will deploy the application as a docker image.
+1 -1
View File
@@ -19,7 +19,7 @@ if [[ "${E2E_DISABLE}" == "true" ]]; then
exit
fi
if [[ -n "$BROWSERSTACK_KEY" ]]; then
if [[ "$BROWSERSTACK" == "true" && -n "$BROWSERSTACK_KEY" ]]; then
echo Testing on browserstack
node scripts/e2e.js --reports-folder "$REPORTS_FOLDER" --retries "$E2E_MAX_RETRIES" --timeout "$E2E_WAIT_FOR_TIMEOUT" --browsers "$E2E_BROWSERS" --browserstack
else