From 0c3a9db443d0d799b1b48d67d720733f65ed4045 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 30 Oct 2017 13:52:11 +0100 Subject: [PATCH] Add more console logs --- scripts/e2e-ci.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/e2e-ci.sh b/scripts/e2e-ci.sh index f64223f32..f805c8e20 100755 --- a/scripts/e2e-ci.sh +++ b/scripts/e2e-ci.sh @@ -8,13 +8,17 @@ if [[ "${CIRCLE_BRANCH}" == "master" ]]; then exitCode=0 browserstack() { + echo "-- Start e2e for $1 --" REPORTS_FOLDER="$CIRCLE_TEST_REPORTS/$1" yarn e2e-browserstack -- --env "$1" # Determine exit code. result=$? if [ "$result" -gt "0" ] then + echo "-- Success e2e for $1 --" exitCode=$result + else + echo "-- Failed e2e for $1 --" fi # Sleep a bit to let browserstack-local to close properly.