fix: Install Playwright with system dependencies
Some checks failed
Deploy Development / deploy (push) Successful in 36s
Test Suite / lint-backend (push) Successful in 0s
Test Suite / build-frontend (push) Successful in 5s
Test Suite / playwright-tests (push) Failing after 35s

Problem: Tests schlagen fehl mit 'Chromium distribution not found'

Lösung: npx playwright install --with-deps chromium
(installiert Chromium + alle benötigten System-Libraries)

Vorher: npx playwright install chromium (nur Browser, keine Deps)
Nachher: npx playwright install --with-deps chromium (Browser + Deps)
This commit is contained in:
Lars 2026-04-22 17:14:48 +02:00
parent cbb783222c
commit 32f716304e

View File

@ -70,7 +70,7 @@ jobs:
- name: Install Playwright
run: |
npm install -D @playwright/test
npx playwright install chromium
npx playwright install --with-deps chromium
- name: Run Playwright tests
env: