blob: 1c5d7a1fd3103d3e2a503bbb15eec6a59d567663 [file] [log] [blame]
Skyler Grey51e9e632023-06-03 10:20:11 +02001import type { PlaywrightTestConfig } from '@playwright/test';
2
3const config: PlaywrightTestConfig = {
4 webServer: {
5 command: 'npm run build && npm run preview',
6 port: 4173
7 },
8 testDir: 'tests',
9 testMatch: /(.+\.)?(test|spec)\.[jt]s/
10};
11
12export default config;