mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-30 11:11:53 +00:00
[fix] Use defineConfig in playwright.i18n.config.ts for TypeScript compilation (#5270)
Update playwright.i18n.config.ts to use defineConfig() instead of PlaywrightTestConfig interface to fix TypeScript compilation issues with 'declare' fields. The defineConfig API provides proper Vite integration for TypeScript/Babel compilation, fixing the error: 'TypeScript declare fields must first be transformed by @babel/plugin-transform-typescript' Fixes compilation error in i18n collection workflow.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import { PlaywrightTestConfig } from '@playwright/test'
|
import { defineConfig } from '@playwright/test'
|
||||||
|
|
||||||
const config: PlaywrightTestConfig = {
|
export default defineConfig({
|
||||||
testDir: './scripts',
|
testDir: './scripts',
|
||||||
use: {
|
use: {
|
||||||
baseURL: 'http://localhost:5173',
|
baseURL: 'http://localhost:5173',
|
||||||
@@ -9,6 +9,4 @@ const config: PlaywrightTestConfig = {
|
|||||||
reporter: 'list',
|
reporter: 'list',
|
||||||
timeout: 60000,
|
timeout: 60000,
|
||||||
testMatch: /collect-i18n-.*\.ts/
|
testMatch: /collect-i18n-.*\.ts/
|
||||||
}
|
})
|
||||||
|
|
||||||
export default config
|
|
||||||
|
|||||||
Reference in New Issue
Block a user