import { defineConfig, devices } from '@playwright/test'; /** * Smoke-test suite for the admin SPA. Runs against a real, already-running deployment * (local dev server or a deployed QA environment) — it does not mock the API and does not * start any servers itself. See e2e/global-setup.ts for how authentication is bootstrapped. */ export default defineConfig({ testDir: './e2e', testMatch: '**/*.e2e.ts', fullyParallel: false, forbidOnly: !!process.env.CI, retries: process.env.CI ? 1 : 0, workers: 1, reporter: process.env.CI ? [['list'], ['html', { open: 'never' }]] : 'list', globalSetup: './e2e/global-setup.ts', timeout: 30_000, use: { baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:5173', trace: 'retain-on-failure', screenshot: 'only-on-failure', }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], });