Fixing playright
Some checks failed
Tests / Mixed Line Ending Check (push) Successful in 45s
Tests / Frontend Tests (push) Successful in 1m40s
Tests / TOML Formatting Check (push) Successful in 44s
Tests / Backend Doctests (push) Successful in 42s
Tests / End of File Check (push) Successful in 30m14s
Tests / Integration Tests (push) Successful in 1m8s
Tests / Ruff Linting (push) Failing after 36s
Tests / Trailing Whitespace Check (push) Successful in 57m52s
Tests / End-to-End Tests (push) Failing after 25m51s
Tests / TOML Syntax Check (push) Successful in 1h27m25s
Tests / Ruff Format Check (push) Successful in 1m0s
Tests / Darglint Docstring Check (push) Successful in 1m4s
Tests / No Docstring Types Check (push) Successful in 56s
Tests / Pyright Type Check (push) Successful in 1m30s
Tests / ESLint Check (push) Successful in 1m14s
Tests / TypeScript Type Check (push) Successful in 1m27s
Tests / Build and Push CICD Base Image (push) Successful in 1m13s
Tests / Prettier Format Check (push) Successful in 57s
Tests / Build and Push CICD Complete Image (push) Successful in 12m20s
Tests / Backend Tests (push) Successful in 1m10s
Tests / YAML Syntax Check (push) Successful in 27m55s
Tests / TSDoc Lint Check (push) Successful in 1m15s

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-31 22:39:31 -04:00
parent 6747b03957
commit a9db4d64bc
2 changed files with 7 additions and 3 deletions

View File

@@ -563,7 +563,11 @@ jobs:
echo 'Running E2E tests with Playwright...' &&
export CI=true &&
export NODE_ENV=test &&
yarn playwright test --reporter=list --headed=false
echo 'Verifying Playwright installation...' &&
yarn playwright --version || echo 'Playwright CLI not available via yarn' &&
npx playwright --version || echo 'Playwright CLI not available via npx' &&
echo 'Running tests via yarn script...' &&
yarn test:e2e --reporter=list
else
echo ' No E2E tests found'
fi

View File

@@ -299,8 +299,8 @@ yarn test:coverage
# Run E2E tests (Playwright)
yarn test:e2e
# Run E2E tests in headless mode (CI-like)
yarn playwright test --headed=false
# Run E2E tests in headless mode (CI-like, default)
yarn playwright test
# Run E2E tests with specific reporter
yarn playwright test --reporter=list