Files
jongryangje/playwright.config.js
taekyoungc 647d5f919d 지정판매소 주소·지도 연동과 관련 설정을 반영
지정판매소 등록/수정/목록에 카카오 주소 검색 및 지도 연동 컴포넌트를 적용하고, 관련 모델·SQL 스크립트·테스트 설정을 함께 정리해 기능 동작 기반을 맞췄다.

Made-with: Cursor
2026-04-14 14:55:12 +09:00

27 lines
570 B
JavaScript

// @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: process.env.PLAYWRIGHT_BASE_URL || 'http://localhost:8045',
trace: 'on-first-retry',
screenshot: 'only-on-failure',
locale: 'ko-KR',
},
projects: [
{
name: 'chromium',
use: { browserName: 'chromium' },
},
],
});