18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
|
#!/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
|
||
|
|
||
|
command="${1:-}"
|
||
|
if [[ -z "$command" ]]; then
|
||
|
command=open
|
||
|
else
|
||
|
shift
|
||
|
fi
|
||
|
|
||
|
./node_modules/.bin/cypress "$command" --e2e --browser chrome "$@"
|