16 lines
327 B
TypeScript
16 lines
327 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests",
|
|
timeout: 30_000,
|
|
use: {
|
|
baseURL: "http://localhost:3001",
|
|
trace: "on-first-retry"
|
|
},
|
|
webServer: {
|
|
command: "npm run dev",
|
|
url: "http://localhost:3001",
|
|
reuseExistingServer: !process.env.CI
|
|
}
|
|
});
|