26 lines
1.1 KiB
TypeScript
26 lines
1.1 KiB
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
// Visual + functional checks against the live app (the `web` compose service, BASE_URL). Run via
|
|
// e2e-tests/compose.visual.yml. Parallel per the project's E2E principle; deterministic colorScheme/viewport
|
|
// so the rendered design is stable across runs.
|
|
export default defineConfig({
|
|
testDir: ".",
|
|
outputDir: "artifacts/test-output",
|
|
fullyParallel: true,
|
|
forbidOnly: true,
|
|
reporter: [["list"], ["html", { open: "never", outputFolder: "artifacts/report" }]],
|
|
use: {
|
|
baseURL: process.env.BASE_URL ?? "http://localhost:3000",
|
|
colorScheme: "light",
|
|
screenshot: "only-on-failure",
|
|
viewport: { width: 1280, height: 800 },
|
|
},
|
|
// CSS anchor positioning is the newest platform feature in the app and every popup menu rests on
|
|
// it, so the tests tagged @engines run in all three engines; the rest stay on chromium.
|
|
projects: [
|
|
{ name: "chromium", use: { ...devices["Desktop Chrome"] } },
|
|
{ name: "firefox", grep: /@engines/, use: { ...devices["Desktop Firefox"] } },
|
|
{ name: "webkit", grep: /@engines/, use: { ...devices["Desktop Safari"] } },
|
|
],
|
|
});
|