/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
.github/actions/run-e2e-tests/script.sh
12 строк
347 B
Ben Irvin
test(e2e): fixes for race conditions and file resets (#26019)
20 апр 2026, 19:38
Не верифицирован
20 апр 2026, 19:38
e94abcb
Код
Авторство
О чём код?
#!/usr/bin/env bash ## Align with `tests/utils/e2e-edition.ts`: explicit CE vs EE for the whole e2e run. if [[ "${RUN_EE:-}" == "true" ]]; then export STRAPI_E2E_EDITION=ee export STRAPI_DISABLE_LICENSE_PING=true else export STRAPI_E2E_EDITION=ce fi jestOptions=($JEST_OPTIONS) yarn test:e2e --setup --concurrency=1 -- "${jestOptions[@]}"