webui-ng/playwright.config.ts
2025-05-03 18:21:06 +02:00

9 lines
178 B
TypeScript

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