We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fc1c4e commit 847be90Copy full SHA for 847be90
1 file changed
playwright.config.ts
@@ -27,6 +27,7 @@ export default defineConfig({
27
use: {
28
/* Base URL to use in actions like `await page.goto('/')`. */
29
baseURL: process.env.WEBSITE_URL,
30
+ ignoreHTTPSErrors: true,
31
32
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
33
trace: 'on-first-retry',
@@ -49,6 +50,11 @@ export default defineConfig({
49
50
use: { ...devices['Desktop Safari'] },
51
},
52
53
+ {
54
+ name: 'edge',
55
+ use: { ...devices['Desktop Edge'] },
56
+ },
57
+
58
/* Test against mobile viewports. */
59
// {
60
// name: 'Mobile Chrome',
0 commit comments