We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f32928 commit db7437bCopy full SHA for db7437b
application/shared-webapp/tests/e2e/playwright.config.ts
@@ -77,7 +77,12 @@ export default defineConfig({
77
78
{
79
name: "webkit",
80
- use: { ...devices["Desktop Safari"] }
+ 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
+ }
86
}
87
]
88
});
0 commit comments