fix: Use Chromium instead of Chrome for Playwright tests
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!
This commit is contained in:
parent
43c6abce4a
commit
74a92439eb
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user