Kurate/packages/ui/playwright.config.ts

11 lines
205 B
TypeScript
Raw Normal View History

import type { PlaywrightTestConfig } from '@playwright/test'
2022-11-23 17:51:51 +01:00
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173,
},
}
2022-11-23 17:51:51 +01:00
export default config