From ddf78d495d225ceb0b914b475aba04a66cb65643 Mon Sep 17 00:00:00 2001 From: burnettk Date: Mon, 6 Mar 2023 17:13:48 -0500 Subject: [PATCH] cypress pilot command --- spiffworkflow-frontend/bin/cypress_pilot | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 spiffworkflow-frontend/bin/cypress_pilot diff --git a/spiffworkflow-frontend/bin/cypress_pilot b/spiffworkflow-frontend/bin/cypress_pilot new file mode 100755 index 000000000..213282d29 --- /dev/null +++ b/spiffworkflow-frontend/bin/cypress_pilot @@ -0,0 +1,24 @@ +#!/usr/bin/env bash + +function error_handler() { + >&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}." + exit "$2" +} +trap 'error_handler ${LINENO} $?' ERR +set -o errtrace -o errexit -o nounset -o pipefail + +# see also: npx cypress run --env grep="can filter",grepFilterSpecs=true +# https://github.com/cypress-io/cypress/tree/develop/npm/grep#pre-filter-specs-grepfilterspecs + +command="${1:-}" +if [[ -z "$command" ]]; then + command=open +else + shift +fi + +if [[ -z "CYPRESS_SPIFFWORKFLOW_FRONTEND_AUTH_WITH_KEYCLOAK" ]]; then + export CYPRESS_SPIFFWORKFLOW_FRONTEND_AUTH_WITH_KEYCLOAK=true +fi + +./node_modules/.bin/cypress "$command" -c specPattern="cypress/pilot/**/*.cy.{js,jsx,ts,tsx}" --e2e --browser chrome "$@"