test(e2e): change baseURL from HTTPS to HTTP for localhost testing (#548)

- 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`
This commit is contained in:
初五 2025-06-07 22:51:25 +08:00 committed by GitHub
parent 0c20ee307a
commit e463ec569d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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',