diff --git a/components/ui/__tests__/Settings.spec.tsx b/components/ui/__tests__/Settings.spec.tsx index e2711a3..b4825d0 100644 --- a/components/ui/__tests__/Settings.spec.tsx +++ b/components/ui/__tests__/Settings.spec.tsx @@ -8,6 +8,23 @@ import { Knex } from "knex"; const RENDER_TIME = 1000; +jest.mock('@/app/lib/whisper', () => { + const originalModule = jest.requireActual('@/app/lib/whisper'); + + return { + ...originalModule, + Whisper: class { + constructor(...args) { + originalModule.Whisper.apply(this, args); + } + + targetFile = { + bytes: jest.fn().mockReturnValue(new Uint8Array([/* mock data */])), + }; + }, + }; +}); + jest.mock("@/app/i18n/api", () => { class LanguageServer { fetchLanguages = () => { diff --git a/translation_terrace.db b/translation_terrace.db index 6b3da6c..1bee694 100644 Binary files a/translation_terrace.db and b/translation_terrace.db differ