import { defineConfig } from '@playwright/test' export default defineConfig({ testDir: './scripts', use: { baseURL: 'http://localhost:5173', headless: true }, reporter: 'list', timeout: 60000, testMatch: /collect-i18n-.*\.ts/, // Use the same global setup as regular tests to ensure proper environment globalSetup: './browser_tests/globalSetup.ts', globalTeardown: './browser_tests/globalTeardown.ts' })