import { defineConfig, devices } from "@playwright/test"; export default defineConfig({ testDir: "./tests/e2e", 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, }, });