playwright.config.ts (263B)
1 import { defineConfig } from "@playwright/test"; 2 3 export default defineConfig({ 4 testDir: ".", 5 timeout: 60_000, 6 retries: 0, 7 workers: 1, 8 use: { 9 baseURL: "http://localhost:3000", 10 headless: true, 11 viewport: { width: 1280, height: 720 }, 12 }, 13 });