author avatar

aman.suhag

Mon Oct 07 2024

Mocking in Jest
Jest provides several ways to mock:
jest.fn(): Creates a mock function that you can use instead of a real function.
jest.mock(): Mocks entire modules.
jest.spyOn(): Tracks calls to an existing method while optionally replacing its implementation.
#jest #test #mock