Files
console/playwright.config.ts
Torsten Dittmann 966e88f2b3 fix: e2e tests
2022-04-22 13:14:27 +02:00

11 lines
224 B
TypeScript

import { type PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 3000
}
};
export default config;