rtpunish-ui/playwright.config.ts
kevin 0b58e18c73
All checks were successful
Build / Build application (push) Successful in 3m47s
Fix action and playwright config
2024-11-12 15:57:33 +00:00

10 lines
230 B
TypeScript

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