Files
website/playwright.config.ts
Torsten Dittmann 37a2f9b1d3 Add tests and cleanup redirects
The changes include:
1. Adding GitHub Actions test job
2. Adding redirect tests
3. Updating redirect configurations
4. Migrating some redirects to SvelteKit routes
5. Test config improvements
2025-03-24 15:27:15 +01:00

14 lines
294 B
TypeScript

import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run dev',
port: 5173
},
fullyParallel: true,
testDir: 'tests',
testMatch: /(.+\.)?(test|spec)\.[jt]s/
};
export default config;