morning-words/playwright.config.ts

13 lines
266 B
TypeScript
Raw Normal View History

2023-01-25 22:48:12 -05:00
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
},
2024-10-09 19:44:43 -04:00
testDir: 'tests',
testMatch: /(.+\.)?(test|spec)\.[jt]s/
2023-01-25 22:48:12 -05:00
};
export default config;