test: add e2e test, add manual test checklist

This commit is contained in:
2026-09-08 11:03:05 +05:00
parent 9a7b7c178b
commit 3f21f1c024
18 changed files with 937 additions and 11 deletions
+29
View File
@@ -0,0 +1,29 @@
import { defineConfig } from "playwright/test";
export default defineConfig({
testDir: "./e2e",
outputDir: "./e2e-results",
fullyParallel: true,
timeout: 60_000,
retries: 0,
reporter: [["list"], ["html", { open: "never" }]],
use: {
baseURL: "http://127.0.0.1:4173",
trace: "on-first-retry",
},
projects: [
{
name: "chromium",
use: {
browserName: "chromium",
viewport: { width: 1440, height: 900 },
},
},
],
webServer: {
command: "pnpm build && node scripts/serve-static.mjs --port 4173",
url: "http://127.0.0.1:4173/preview",
reuseExistingServer: !process.env.CI,
timeout: 180_000,
},
});