import * as app from "./App" import * as math from "./src/math" describe("モジュールと関数をモックする",()=>{ test("1.関数をモックする", () => { math.add = jest.fn() app.doAdd(1, 2) expect(math.add).toHaveBeenCalledWith(1, 2) }); })