1
0

Ensure end-to-end tests run as expected

This commit is contained in:
2026-03-17 19:03:14 +01:00
parent dbd2f391bd
commit 4713683638
4 changed files with 302 additions and 265 deletions

View File

@@ -24,6 +24,10 @@ while [[ $# -gt 0 ]]; do
PLAYWRIGHT_ARGS+=("--headed")
shift
;;
--slow)
export SLOW_MO=500
shift
;;
--)
shift
PLAYWRIGHT_ARGS+=("$@")
@@ -72,7 +76,7 @@ fi
# Install dependencies and browser.
npm install --silent
npx playwright install chromium --with-deps 2>/dev/null || npx playwright install chromium
npx playwright install chromium
# Run the tests.
echo "Running E2E integration tests..."