import { defineConfig, devices } from "@playwright/test"; import path from "path"; import { fileURLToPath } from "url"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const appPath = path.join(__dirname, "./e2e/apps"); /** * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ testDir: "./e2e", fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: "html", use: { baseURL: "http://localhost:3011", trace: "on-first-retry", }, projects: [ { name: "chromium", use: { ...devices["Desktop Chrome"] }, }, // { // name: "firefox", // use: { ...devices["Desktop Firefox"] }, // }, // // { // name: "webkit", // use: { ...devices["Desktop Safari"] }, // }, ], webServer: { command: `npm run dev`, url: "http://localhost:3011", reuseExistingServer: !process.env.CI, timeout: 10_000, }, });