gh_UserManager/apps/web/playwright.config.ts
bermooda-company 54d5891edf user
2026-08-23 23:59:14 +03:30

24 lines
483 B
TypeScript

import { defineConfig, devices } from "@playwright/test";
const BASE_URL = process.env.E2E_BASE_URL || "http://localhost:3000";
export default defineConfig({
testDir: "./e2e",
timeout: 30_000,
expect: { timeout: 10_000 },
fullyParallel: false,
retries: 0,
reporter: [["list"]],
use: {
baseURL: BASE_URL,
headless: true,
trace: "on-first-retry",
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
});