a310b671e2
- 최대 40일 범위 제한 및 1년 조회 가능 기간 검증 - Date-range Picker UI 추가 및 서버 동기화 로직 구현 - Controller, DTO 유효성 테스트 및 Playwright 테스트 작성
22 lines
608 B
JavaScript
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' } }
|
|
]
|
|
});
|