import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: 'tests/e2e', timeout: 60_000, retries: 0, use: { baseURL: 'http://localhost:3000', headless: true, viewport: { width: 1280, height: 800 }, ignoreHTTPSErrors: true, }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] } }, { name: 'mobile-chrome', use: { ...devices['Pixel 5'] } }, ], });