Files
console/playwright.config.ts
Torsten Dittmann 9302fd7d87 fix: e2e tests
2022-07-11 12:54:05 +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: 4173
}
};
export default config;