From e463ec569d4eb8cecc27382bee8aefd9549753d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=9D=E4=BA=94?= <141227996+ChuwuYo@users.noreply.github.com> Date: Sat, 7 Jun 2025 22:51:25 +0800 Subject: [PATCH] test(e2e): change baseURL from HTTPS to HTTP for localhost testing (#548) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update playwright.config.ts baseURL from https://localhost:4859 to http://localhost:4859 - Fixes SSL certificate in test environment - Aligns with actual dev server configuration which runs on HTTP:`playwright.config.ts:87` --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index b69e3414..ab662d24 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -36,7 +36,7 @@ export default defineConfig({ // baseURL: 'http://127.0.0.1:3000', // docs - baseURL: 'https://localhost:4859', + baseURL: 'http://localhost:4859', /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: 'on-first-retry',