Files
ComfyUI_frontend/playwright.i18n.config.ts

13 lines
285 B
TypeScript

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