#!/bin/bash

# This file was automatically generated. DO NOT EDIT.
# Any changes made to this file will be overwritten.

if [ -f .env ]; then
  set -a; . ./.env; set +a;
fi

entrypoint=$1
if [ -e "$entrypoint" ]; then
  ./"$entrypoint"
fi

CYPRESS_COMMAND=${CYPRESS_COMMAND:-npx cypress run --project .}
exec sh -c "$CYPRESS_COMMAND"