Files
website/playwright.config.ts
2025-03-25 17:04:26 +01:00

14 lines
295 B
TypeScript

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