UserFrontend/playwright.config.js

11 lines
186 B
JavaScript
Raw Normal View History

2024-12-06 15:04:05 +01:00
import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run build && npm run preview',
port: 4173
},
testDir: 'e2e'
});