test: e2e smoke; docs: README; ci: release workflow

Co-Authored-By: Claude
This commit is contained in:
2026-06-19 02:22:57 +00:00
parent 53c2550097
commit ee56f8c9a2
6 changed files with 406 additions and 0 deletions

11
playwright.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
fullyParallel: false,
workers: 1,
retries: 0,
timeout: 120_000,
expect: { timeout: 30_000 },
reporter: [["list"]],
});