// @ts-check const { defineConfig } = require('@playwright/test'); module.exports = defineConfig({ testDir: './e2e', fullyParallel: false, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: 1, reporter: [['html', { open: 'never' }], ['list']], timeout: 60000, use: { baseURL: 'http://localhost:8045', trace: 'on-first-retry', screenshot: 'only-on-failure', locale: 'ko-KR', }, projects: [ { name: 'chromium', use: { browserName: 'chromium' }, }, ], });