feat: update E2E testing configuration to use ssl

This commit is contained in:
ramvignesh-b
2026-04-16 04:26:29 +05:30
parent cc8e3e4e4e
commit b08d505a5a
13 changed files with 249 additions and 36 deletions
+5
View File
@@ -33,6 +33,10 @@ export default defineConfig({
trace: "on-first-retry",
/* Capture screenshot on failure */
screenshot: "only-on-failure",
/* Capture video on failure */
video: "retain-on-failure",
/* Ignore HTTPS errors */
ignoreHTTPSErrors: true,
},
/* Configure projects for major browsers */
@@ -52,5 +56,6 @@ export default defineConfig({
command: "bun run dev",
url: process.env.FRONTEND_URL,
reuseExistingServer: !process.env.CI,
ignoreHTTPSErrors: true,
},
});