From 7034003fd1220c5c09173ead2d98fd09bc205e09 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Thu, 2 Nov 2017 17:55:31 -0600 Subject: [PATCH] fixed changed package script --- scripts/e2e-ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e-ci.sh b/scripts/e2e-ci.sh index 70d423429..4da3b615e 100755 --- a/scripts/e2e-ci.sh +++ b/scripts/e2e-ci.sh @@ -29,7 +29,7 @@ if [[ "${CIRCLE_BRANCH}" == "master" ]]; then echo "-- Start e2e for $1 #$try --" - REPORTS_FOLDER="$CIRCLE_TEST_REPORTS/$1" yarn test:e2e:browserstack --env "$1" + REPORTS_FOLDER="$CIRCLE_TEST_REPORTS/$1" yarn e2e:browserstack --env "$1" # Determine exit code. result=$? @@ -85,7 +85,7 @@ if [[ "${CIRCLE_BRANCH}" == "master" ]]; then exit $exitCode else # When browserstack is not available test locally using chrome headless. - REPORTS_FOLDER="$CIRCLE_TEST_REPORTS/chrome" yarn test:e2e --env chrome-headless + REPORTS_FOLDER="$CIRCLE_TEST_REPORTS/chrome" yarn e2e --env chrome-headless # Will exit with status of last command. exit $?