f3fdb17c39
Covers smoke, online-board, schedule, flights-map, popular, and navigation routes with 20 passing tests and 1 fixme (page title).
17 lines
328 B
TypeScript
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,
|
|
},
|
|
});
|