fix: Install Playwright with system dependencies
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:
parent
cbb783222c
commit
32f716304e
|
|
@ -70,7 +70,7 @@ jobs:
|
||||||
- name: Install Playwright
|
- name: Install Playwright
|
||||||
run: |
|
run: |
|
||||||
npm install -D @playwright/test
|
npm install -D @playwright/test
|
||||||
npx playwright install chromium
|
npx playwright install --with-deps chromium
|
||||||
|
|
||||||
- name: Run Playwright tests
|
- name: Run Playwright tests
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user