Skip to content

Instantly share code, notes, and snippets.

@xiongemi
Created April 6, 2022 15:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save xiongemi/b0dcc658ead94717003988fc0d7bb4f2 to your computer and use it in GitHub Desktop.
Save xiongemi/b0dcc658ead94717003988fc0d7bb4f2 to your computer and use it in GitHub Desktop.
mock @react-navigation/native for unit testing
jest.mock('@react-navigation/native', () => {
return {
useNavigation: () => ({
navigate: jest.fn(),
dispatch: jest.fn(),
}),
useRoute: () => ({
params: {
id: '123',
},
}),
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment