From 74a92439eb2c6813d69125ed502d6ef184427f6b Mon Sep 17 00:00:00 2001 From: Lars Date: Wed, 22 Apr 2026 22:09:17 +0200 Subject: [PATCH] fix: Use Chromium instead of Chrome for Playwright tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: Tests schlagen fehl mit 'chrome not found at /opt/google/chrome/chrome' Root Cause: playwright.config.js hatte 'channel: chrome' konfiguriert, was Google Chrome erwartet statt Playwright's eingebautes Chromium Lösung: channel: 'chrome' entfernt → nutzt Standard-Chromium Tests sollten jetzt durchlaufen! --- playwright.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.js b/playwright.config.js index ed2c6ed..5c6ea5a 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -2,7 +2,7 @@ module.exports = { testDir: './tests', timeout: 30000, use: { - channel: 'chrome', + // channel: 'chrome', // Entfernt: nutze Standard-Chromium statt Google Chrome headless: true, viewport: { width: 390, height: 844 }, screenshot: 'only-on-failure',