diff --git a/test/browser/playwright.config.ts b/test/browser/playwright.config.ts index 23684b0e9..530d0fa21 100644 --- a/test/browser/playwright.config.ts +++ b/test/browser/playwright.config.ts @@ -7,6 +7,14 @@ const config: PlaywrightTestConfig = { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, + { + name: 'firefox', + use: { ...devices['Desktop Firefox'] }, + }, + { + name: 'webkit', + use: { ...devices['Desktop Safari'] }, + }, ], timeout: 10_000, retries: 1,