mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-10 15:40:24 +00:00
15 lines
394 B
TypeScript
15 lines
394 B
TypeScript
/**
|
|
* Combined global teardown for i18n collection tests
|
|
* Includes both regular teardown and litegraph restoration
|
|
*/
|
|
import globalTeardown from './globalTeardown'
|
|
import { restoreLitegraph } from './i18nSetup'
|
|
|
|
export default async function globalTeardownWithI18n() {
|
|
// First run regular teardown
|
|
await globalTeardown()
|
|
|
|
// Then restore litegraph files
|
|
await restoreLitegraph()
|
|
}
|