mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
import { PlaywrightTestConfig } from '@playwright/test'
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: './scripts',
|
|
use: {
|
|
baseURL: 'http://localhost:5173',
|
|
headless: true
|
|
},
|
|
reporter: 'list',
|
|
timeout: 10000,
|
|
testMatch: /collect-i18n-.*\.ts/
|
|
}
|
|
|
|
export default config
|