migration: establish exact preserved app baseline

This commit is contained in:
leefer
2026-07-30 23:51:48 +08:00
commit e4a9b2e647
389 changed files with 126625 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
const { defineConfig } = require("@playwright/test");
module.exports = defineConfig({
testDir: "./tests/e2e",
timeout: 30_000,
fullyParallel: false,
reporter: "line",
use: {
baseURL: "http://127.0.0.1:8876",
channel: "msedge",
headless: true,
screenshot: "only-on-failure",
trace: "retain-on-failure",
},
webServer: {
command: "python -m http.server 8876 --bind 127.0.0.1 --directory static",
url: "http://127.0.0.1:8876/index.html",
reuseExistingServer: true,
timeout: 15_000,
},
});