ledgerone_frontend/playwright.config.ts
2026-03-18 13:02:58 -07:00

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
}
});