feat: complete TASK-WP0-02 contract baseline

This commit is contained in:
suyx
2026-07-27 17:49:24 +08:00
parent ae20eaf01f
commit dbe3e73b91
28 changed files with 2540 additions and 23 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig } from "@playwright/test";
export default defineConfig({
forbidOnly: true,
fullyParallel: false,
outputDir: process.env.DADA_PLAYWRIGHT_OUTPUT_DIR ?? "test-results/wp0-02",
reporter: "line",
retries: 0,
testDir: "./tests/e2e",
timeout: 30_000,
use: {
channel: "msedge",
headless: true,
trace: "on",
viewport: { height: 720, width: 1280 },
},
workers: 1,
});