Files
vexplor_dev/frontend/playwright.config.ts
SeongHyun Kim bda77ef844 chore: Playwright 테스트 설정 및 E2E 테스트 추가
pop-cart-outbound 브라우저 테스트 시나리오 10개 포함.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 19:16:24 +09:00

31 lines
611 B
TypeScript

import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "./tests/e2e",
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: 0,
workers: 1,
reporter: "html",
timeout: 60_000,
expect: { timeout: 10_000 },
use: {
baseURL: "http://localhost:9771",
trace: "on-first-retry",
screenshot: "only-on-failure",
video: "on-first-retry",
actionTimeout: 15_000,
},
projects: [
{
name: "chromium",
use: {
...devices["Desktop Chrome"],
viewport: { width: 1024, height: 800 },
},
},
],
});