import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './src/__tests__/e2e', testMatch: '**/*.spec.js', timeout: 30000, expect: { timeout: 5000 }, fullyParallel: false, retries: 1, use: { baseURL: process.env.PLAYWRIGHT_BASE_URL || 'http://192.168.0.251:13000', trace: 'on-first-retry', }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] } }, ], webServer: undefined, });