mirror of
https://github.com/acid-info/Kurate.git
synced 2025-01-13 01:14:12 +00:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import type { PlaywrightTestConfig } from '@playwright/test'
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
webServer: {
|
|
command: 'npm run build && npm run preview',
|
|
port: 4173,
|
|
},
|
|
}
|
|
|
|
export default config
|