@dargmuesli/nuxt-vio 12.0.1 → 12.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/playwright.config.ts +4 -0
package/package.json
CHANGED
package/playwright.config.ts
CHANGED
@@ -76,6 +76,9 @@ export default defineConfig({
|
|
76
76
|
/* Base URL to use in actions like `await page.goto('/')`. */
|
77
77
|
baseURL: SITE_URL,
|
78
78
|
|
79
|
+
// TODO: remove once tests run without it
|
80
|
+
ignoreHTTPSErrors: true,
|
81
|
+
|
79
82
|
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
80
83
|
trace: 'on-first-retry',
|
81
84
|
},
|
@@ -86,6 +89,7 @@ export default defineConfig({
|
|
86
89
|
env: {
|
87
90
|
NUXT_PUBLIC_VIO_IS_TESTING: 'true',
|
88
91
|
},
|
92
|
+
ignoreHTTPSErrors: true, // TODO: remove once tests run without it
|
89
93
|
timeout: process.env.NODE_ENV === 'production' ? 10000 : 100000,
|
90
94
|
url: SITE_URL,
|
91
95
|
reuseExistingServer: !process.env.CI,
|