Files
ComfyUI_frontend/playwright.i18n.config.ts
2025-09-28 15:33:29 -07:00

14 lines
264 B
TypeScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: './scripts',
use: {
baseURL: 'http://localhost:5173',
headless: true
},
reporter: 'list',
workers: 1,
timeout: 60000,
testMatch: /collect-i18n-.*\.ts/
})