Files
SpotMicroESP32-Leika/app/playwright.config.ts
T
2024-05-03 16:23:03 +02:00

13 lines
280 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;