Command
jest.mock("./module")Explanation
Module mocking allows you to replace entire modules with mock implementations for testing.
Examples
Mock API module
jest.mock("./api")Mock axios library
jest.mock("axios")Unmock module
jest.unmock("./module")