mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 04:22:07 +00:00
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
14 lines
294 B
TypeScript
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;
|