Files
flights_web/playwright.config.ts
T
gnezim f3fdb17c39
CI / ci (push) Failing after 36s
Deploy / build-and-deploy (push) Failing after 6s
Add Playwright e2e tests for all feature pages
Covers smoke, online-board, schedule, flights-map, popular, and
navigation routes with 20 passing tests and 1 fixme (page title).
2026-04-15 16:56:18 +03:00

17 lines
328 B
TypeScript

import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "tests/e2e",
timeout: 30000,
use: {
baseURL: "http://localhost:8080",
headless: true,
},
webServer: {
command: "pnpm dev",
url: "http://localhost:8080",
reuseExistingServer: true,
timeout: 30000,
},
});