mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-11-08 22:43:50 +00:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
import type { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
webServer: {
|
|
command: 'npm run build && npm run preview',
|
|
port: 4173
|
|
},
|
|
testDir: 'src/playwright',
|
|
testMatch: /(.+\.)?(test|spec)\.[jt]s/
|
|
};
|
|
|
|
export default config;
|