import { defineConfig } from '@playwright/test'; // Smoke/e2e tests run against a deployed stage (CD pipeline) or a local // stack. The target comes from E2E_BASE_URL; no dev server is started here. export default defineConfig({ testDir: './e2e', timeout: 30_000, retries: 1, reporter: [['list']], use: { baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:5173', }, });