Kurate/packages/ui/playwright.config.ts
2023-02-16 23:13:40 +01:00

12 lines
237 B
TypeScript

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