mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-31 13:29:55 +00:00
14 lines
204 B
TypeScript
14 lines
204 B
TypeScript
module.exports = async function () {
|
|
jest.mock('vue-i18n', () => {
|
|
return {
|
|
useI18n: jest.fn()
|
|
}
|
|
})
|
|
|
|
jest.mock('jsondiffpatch', () => {
|
|
return {
|
|
diff: jest.fn()
|
|
}
|
|
})
|
|
}
|