Mocking in Jest
Some mocking examples for Jest.
Mock an ES6 exported function
jest.mock("../../utils", () => {
return {
getOS: () => "ios",
isDeviceWithPhysicalHomeButton: () => false,
};
});
Make sure that your import path is the same. If you import { getOS }
from ../../utils/getOS
, it won’t work.