Files
PLG-MuDiCS/control/frontend/playwright.config.ts
T
2025-12-29 18:21:30 +01:00

11 lines
204 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
fullyParallel: true,
webServer: {
command: 'deno task build && deno task preview',
port: 4173
},
testDir: 'e2e'
});