/* Playwright E2E 测试配置 — 天工智能体平台 */ import { defineConfig } from "@playwright/test"; export default defineConfig({ testDir: "../tests/e2e", timeout: 30000, retries: 1, use: { baseURL: "http://localhost:8038", screenshot: "only-on-failure", trace: "retain-on-failure", }, projects: [ { name: "chromium", use: { browserName: "chromium" } }, ], });