/** * llmindex.io — Playwright e2e configuration * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * License: Proprietary — © Simon-Pierre Boucher, all rights reserved */ import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './e2e', timeout: 30_000, use: { baseURL: process.env.E2E_BASE_URL ?? 'http://127.0.0.1:3000', }, webServer: process.env.E2E_BASE_URL ? undefined : { command: 'pnpm dev', url: 'http://127.0.0.1:3000', reuseExistingServer: true, timeout: 120_000, }, });