playwright.config.ts 189 B

123456
  1. import { defineConfig } from '@playwright/test';
  2. export default defineConfig({
  3. webServer: { command: 'npm run build && npm run preview', port: 4173 },
  4. testMatch: '**/*.e2e.{ts,js}',
  5. });