Skip to content

Commit db7437b

Browse files
committed
Disable SSL certificate check for webkit on Windows
1 parent 0f32928 commit db7437b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

application/shared-webapp/tests/e2e/playwright.config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,12 @@ export default defineConfig({
7777

7878
{
7979
name: "webkit",
80-
use: { ...devices["Desktop Safari"] }
80+
use: {
81+
...devices["Desktop Safari"],
82+
// Ignore HTTPS errors only for WebKit on Windows, as it's stricter than other browsers
83+
// biome-ignore lint/style/useNamingConvention: <explanation>
84+
ignoreHTTPSErrors: isWindows
85+
}
8186
}
8287
]
8388
});

0 commit comments

Comments
 (0)