import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: 'e2e', fullyParallel: false, forbidOnly: !!process.env.CI, retries: 0, workers: 1, timeout: 60000, reporter: 'html', use: { baseURL: 'https://manaloop.tailf367e3.ts.net/', trace: 'on-first-retry', screenshot: 'on', video: 'retain-on-failure', }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], });