playwright.config.ts 196 B

123456789
  1. import { defineConfig } from '@playwright/test';
  2. export default defineConfig({
  3. webServer: {
  4. command: 'npm run build && npx http-server ../public -p 8181',
  5. port: 8181
  6. },
  7. testDir: 'e2e'
  8. });