You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
470 B
19 lines
470 B
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests/e2e",
|
|
testIgnore: "test-mode-pipeline.spec.ts",
|
|
timeout: 60_000,
|
|
use: {
|
|
baseURL: "http://127.0.0.1:3100",
|
|
trace: "on-first-retry",
|
|
},
|
|
projects: [{ name: "chromium", use: { ...devices["Desktop Chrome"] } }],
|
|
webServer: {
|
|
command: "pnpm dev",
|
|
url: "http://127.0.0.1:3100",
|
|
reuseExistingServer: true,
|
|
timeout: 120_000,
|
|
},
|
|
});
|