mirror of
https://gitee.com/spark-store-project/spark-store
synced 2026-04-26 09:20:18 +08:00
Playwright tests were timing out on CI because the Vite dev server was listening on `http://localhost:5173/` but `playwright.config.ts` was configured to wait for `http://127.0.0.1:5173/`. Node 17+ resolves `localhost` to IPv6 (`::1`), causing Playwright's strict IPv4 wait to time out. This commit updates `playwright.config.ts` to use `http://localhost:5173` for both `baseURL` and the `webServer.url`.
34 lines
807 B
TypeScript
34 lines
807 B
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./e2e",
|
|
fullyParallel: true,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: [
|
|
["html", { outputFolder: "playwright-report" }],
|
|
["json", { outputFile: "test-results.json" }],
|
|
],
|
|
use: {
|
|
baseURL: "http://localhost:5173",
|
|
trace: "on-first-retry",
|
|
screenshot: "only-on-failure",
|
|
video: "retain-on-failure",
|
|
},
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: { ...devices["Desktop Chrome"] },
|
|
},
|
|
],
|
|
webServer: {
|
|
command: "npm run dev",
|
|
url: "http://localhost:5173",
|
|
reuseExistingServer: !process.env.CI,
|
|
timeout: 120 * 1000,
|
|
stdout: "pipe",
|
|
stderr: "pipe",
|
|
},
|
|
});
|