AdelieStack/playwright.config.ts
Bradley Shellnut 2c2f33ea68
Initial commit
2024-12-31 22:43:09 +00:00

12 lines
266 B
TypeScript

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