soulsync/webui/playwright.config.ts
Antti Kettunen d98dcd8606
Initial Vite app scaffolding & issues page impl
- File-based routing with tanstack router
  - Persist top-level navigation state in url, even for most legacy pages
  - Striving for an intuitive and simple folder structure where
    route-related code is colocated, but the amount of files is still
    kept to a minimum
- Replace native fetch with `ky`
  - Familiar api, but more polished
2026-05-13 22:24:46 +03:00

13 lines
312 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './tests',
timeout: 30_000,
use: {
launchOptions: {
executablePath: '/usr/bin/chromium',
},
baseURL: process.env.PLAYWRIGHT_BASE_URL || 'http://127.0.0.1:8008',
trace: 'on-first-retry',
},
});