mirror of
https://git.freecumextremist.com/grumbulon/pomme.git
synced 2024-11-01 03:30:34 +00:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import type { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
webServer: {
|
|
command: 'npm run build && npm run preview',
|
|
port: 4173
|
|
},
|
|
testDir: 'tests'
|
|
};
|
|
|
|
export default config;
|