rebuild(stage-4): deliver shared shell and account interfaces

This commit is contained in:
leefer
2026-07-30 02:08:20 +08:00
parent d1c658d8ef
commit 3b75bf2d63
47 changed files with 3042 additions and 99 deletions
+16
View File
@@ -0,0 +1,16 @@
const { defineConfig } = require("@playwright/test");
module.exports = defineConfig({
testDir: "./tests/e2e",
outputDir: "./data/playwright",
timeout: 30_000,
fullyParallel: false,
reporter: "line",
use: {
baseURL: "http://127.0.0.1:5173",
channel: "msedge",
headless: true,
viewport: { width: 1920, height: 1080 },
trace: "retain-on-failure",
},
});