2026-03-25 15:18:57 +09:00
|
|
|
// @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']],
|
2026-03-26 14:30:45 +09:00
|
|
|
timeout: 60000,
|
2026-03-25 15:18:57 +09:00
|
|
|
|
|
|
|
|
use: {
|
|
|
|
|
baseURL: 'http://localhost:8045',
|
|
|
|
|
trace: 'on-first-retry',
|
|
|
|
|
screenshot: 'only-on-failure',
|
|
|
|
|
locale: 'ko-KR',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
projects: [
|
|
|
|
|
{
|
|
|
|
|
name: 'chromium',
|
|
|
|
|
use: { browserName: 'chromium' },
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|