diff --git a/tests/scripts/cypress-ci-tests.sh b/tests/scripts/cypress-ci-tests.sh index 02daf2c5263..2c5e4aff3e6 100755 --- a/tests/scripts/cypress-ci-tests.sh +++ b/tests/scripts/cypress-ci-tests.sh @@ -5,12 +5,12 @@ set -x # This runs the Cypress test suites with some additional functionality for CI. repo_root="$(git rev-parse --show-toplevel)" -pushd "${repo_root}" > /dev/null +pushd "${repo_root}" >/dev/null ./tests/scripts/cypress-tests.sh "${@}" exit_code=$? node tests/report_cypress_accessibility_errors.js -popd > /dev/null +popd >/dev/null exit "${exit_code}"