From ddf8912092ecbdc99cadc812a3d9fb8759023c06 Mon Sep 17 00:00:00 2001 From: Richard R Date: Wed, 21 Jan 2026 14:42:13 -0700 Subject: [PATCH] chore(config): ignore unit tests in firefox and webkit browsers --- playwright.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playwright.config.ts b/playwright.config.ts index 7b20bed..877a6a7 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -44,6 +44,7 @@ export default defineConfig({ { name: 'firefox', + testIgnore: '**/unit/**', use: { ...devices['Desktop Firefox'], extraHTTPHeaders: { 'x-openreader-test-namespace': 'firefox' }, @@ -52,6 +53,7 @@ export default defineConfig({ { name: 'webkit', + testIgnore: '**/unit/**', use: { ...devices['Desktop Safari'], extraHTTPHeaders: { 'x-openreader-test-namespace': 'webkit' },