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