From 32f716304ee87f7aa1082094843b7f65a5612078 Mon Sep 17 00:00:00 2001 From: Lars Date: Wed, 22 Apr 2026 17:14:48 +0200 Subject: [PATCH] fix: Install Playwright with system dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- .gitea/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 67f529f..f9296ba 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -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: