feat: complete TASK-WP0-02 contract baseline
This commit is contained in:
@@ -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,
|
||||
});
|
||||
Reference in New Issue
Block a user