import { defineConfig, devices } from '@playwright/test'; const BASE_URL = process.env.BASE_URL || 'https://marketing-stage-r4tfklscwq-uc.a.run.app'; export default defineConfig({ testDir: './tests', timeout: 30_000, retries: process.env.CI ? 2 : 0, reporter: [['list'], ['html', { open: 'never' }]], use: { baseURL: BASE_URL, extraHTTPHeaders: {}, }, projects: [ { name: 'api', testDir: './tests/api', use: { ...devices['Desktop Chrome'] } }, { name: 'chromium', testDir: './tests/e2e', use: { ...devices['Desktop Chrome'] } }, { name: 'mobile', testDir: './tests/e2e', use: { ...devices['Pixel 7'] } }, ], });