lan-party-frontend/playwright.config.ts

11 lines
206 B
TypeScript
Raw Permalink Normal View History

2022-08-31 08:50:12 +02:00
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
}
};
export default config;