mirror of
https://github.com/strapi/strapi.git
synced 2026-01-02 10:12:57 +00:00
12 lines
223 B
Bash
Executable File
12 lines
223 B
Bash
Executable File
## disable EE if options not set
|
|
if [[ -z "$RUN_EE" ]]; then
|
|
export STRAPI_DISABLE_EE=true
|
|
fi
|
|
|
|
export ENV_PATH="$(pwd)/testApp/.env"
|
|
|
|
opts=($DB_OPTIONS)
|
|
|
|
yarn run -s test:generate-app "${opts[@]}" $@
|
|
yarn run -s test:e2e
|