Files
SpotMicroESP32-Leika/app/playwright.config.ts
Rune Harlyk 91a7b170fe 🎨 format
2025-10-11 10:42:32 +02:00

13 lines
301 B
TypeScript

import type { PlaywrightTestConfig } from '@playwright/test'
const config: PlaywrightTestConfig = {
webServer: {
command: 'pnpm run build && pnpm run preview',
port: 4173
},
testDir: 'tests/integration',
testMatch: /(.+\.)?(test|spec)\.[jt]s/
}
export default config