Files
ComfyUI_frontend/tests-ui/tests/globalSetup.ts
2024-12-29 16:25:06 -05:00

14 lines
204 B
TypeScript

module.exports = async function () {
jest.mock('vue-i18n', () => {
return {
useI18n: jest.fn()
}
})
jest.mock('jsondiffpatch', () => {
return {
diff: jest.fn()
}
})
}