Files
Pien-Studio/playwright.config.ts

23 lines
452 B
TypeScript
Raw Permalink Normal View History

2026-05-10 03:06:54 +07:00
import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "tests/e2e",
timeout: 30_000,
use: {
baseURL: "http://127.0.0.1:3000",
trace: "on-first-retry",
},
webServer: {
command: "bun run dev",
cwd: "apps/web",
url: "http://127.0.0.1:3000",
reuseExistingServer: true,
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
});