- 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
13 lines
312 B
TypeScript
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',
|
|
},
|
|
});
|