Files
eapim-portal/src/test/js/playwright.config.js
T
Rinjae a310b671e2
eapim-portal CI / build (push) Has been cancelled
eapim-portal Test / test (push) Has been cancelled
API 통계 날짜 선택 로직 및 테스트 추가:
- 최대 40일 범위 제한 및 1년 조회 가능 기간 검증
- Date-range Picker UI 추가 및 서버 동기화 로직 구현
- Controller, DTO 유효성 테스트 및 Playwright 테스트 작성
2026-09-09 16:25:00 +09:00

22 lines
608 B
JavaScript

const { defineConfig } = require('@playwright/test');
module.exports = defineConfig({
testDir: __dirname,
testMatch: ['moment-compatibility.spec.js', 'statistics-date-range.spec.js'],
outputDir: '../../../build/playwright',
fullyParallel: true,
workers: 2,
reporter: 'list',
use: {
browserName: 'chromium',
locale: 'ko-KR',
viewport: { width: 1280, height: 800 },
trace: 'retain-on-failure',
screenshot: 'only-on-failure'
},
projects: [
{ name: 'seoul', use: { timezoneId: 'Asia/Seoul' } },
{ name: 'new-york', use: { timezoneId: 'America/New_York' } }
]
});