Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save night-fury-rider/d6549af01548973021fb20ddf583d39a to your computer and use it in GitHub Desktop.
Save night-fury-rider/d6549af01548973021fb20ddf583d39a to your computer and use it in GitHub Desktop.
Jest - Partially Mocking Library Methods 1
import Notifee from "@notifee/react-native";
jest.spyOn(Notifee, "requestpermission");
Notifee.requestPermission.mockImplementation(() => {
throw new Error();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment