Files
taxbaik/playwright.config.ts
T
kjh2064 673c78be17
TaxBaik CI/CD / build-and-deploy (push) Has been cancelled
docs: add smoke runbook and split smoke projects
2026-07-04 20:49:34 +09:00

52 lines
1.4 KiB
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './tests/e2e',
timeout: 180_000, // WASM 부팅 시간 포함 (최대 ~120초)
expect: {
timeout: 90_000
},
fullyParallel: !!process.env.CI,
forbidOnly: !!process.env.CI,
retries: 0,
reporter: process.env.CI ? [['list'], ['html', { open: 'never' }]] : 'list',
use: {
// Green-Blue 배포 지원:
// - 로컬 Nginx: http://localhost/taxbaik (포트 무관, active 버전 자동 라우팅)
// - 원격: http://178.104.200.7/taxbaik (또는 process.env.E2E_BASE_URL)
// - CI: 환경변수로 명시적 설정 가능
baseURL: process.env.E2E_BASE_URL ?? 'http://localhost/taxbaik',
trace: 'retain-on-failure',
screenshot: 'only-on-failure',
video: 'retain-on-failure'
},
projects: [
{
name: 'Desktop Chrome',
use: { ...devices['Desktop Chrome'] }
},
{
name: 'iPhone 12',
use: { ...devices['iPhone 12'] }
},
{
name: 'iPad Pro',
use: { ...devices['iPad Pro'] }
},
{
name: 'Galaxy S9+',
use: { ...devices['Galaxy S9+'] }
},
{
name: 'Public Smoke',
testMatch: /public-smoke\.spec\.ts$/,
use: { ...devices['Desktop Chrome'] }
},
{
name: 'Admin Smoke',
testMatch: /admin-smoke\.spec\.ts$/,
use: { ...devices['Desktop Chrome'] }
}
]
});