playwright.config.ts 213 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import { defineConfig } from '@playwright/test' export default defineConfig({ testDir: './tests/e2e', timeout: 30_000, retries: 0, use: { baseURL: 'http://127.0.0.1:4174', headless: true, }, })