import { defineConfig } from "@playwright/test"; // 로컬 스택(docker: frontend 5380 + backend 8380, DEV_AUTH)에 대한 E2E. // 스택은 이미 떠 있다고 가정(docker compose up -d). export default defineConfig({ testDir: "./e2e", timeout: 30_000, expect: { timeout: 10_000 }, fullyParallel: false, workers: 1, retries: 0, reporter: [["list"]], use: { baseURL: "http://localhost:5380", headless: true, viewport: { width: 1280, height: 900 }, actionTimeout: 10_000, ignoreHTTPSErrors: true, }, });