2026-04-27 21:51:56 +08:00
|
|
|
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
|
|
2026-06-19 18:46:59 +08:00
|
|
|
const DOCS_PORT = 4173;
|
2026-04-27 21:51:56 +08:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
testDir: "./tests/e2e-docs",
|
|
|
|
|
timeout: 30_000,
|
|
|
|
|
expect: { timeout: 10_000 },
|
|
|
|
|
fullyParallel: true,
|
|
|
|
|
retries: 0,
|
|
|
|
|
workers: 1,
|
|
|
|
|
reporter: "html",
|
|
|
|
|
use: {
|
|
|
|
|
baseURL: `http://localhost:${DOCS_PORT}`,
|
|
|
|
|
screenshot: "only-on-failure",
|
|
|
|
|
trace: "retain-on-failure",
|
|
|
|
|
},
|
|
|
|
|
projects: [
|
|
|
|
|
{
|
|
|
|
|
name: "chromium",
|
|
|
|
|
use: { ...devices["Desktop Chrome"] },
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
webServer: {
|
2026-06-19 18:46:59 +08:00
|
|
|
command:
|
|
|
|
|
"pnpm --filter @snapotter/docs docs:build && pnpm --filter @snapotter/docs docs:preview",
|
2026-04-27 21:51:56 +08:00
|
|
|
port: DOCS_PORT,
|
|
|
|
|
reuseExistingServer: !process.env.CI,
|
2026-06-19 18:46:59 +08:00
|
|
|
timeout: 120_000,
|
2026-04-27 21:51:56 +08:00
|
|
|
},
|
|
|
|
|
});
|