Skip to content

Instantly share code, notes, and snippets.

@aloverso
Created July 17, 2020 18:28
Show Gist options
  • Save aloverso/0408c9257832f8ac67bf8d09cdae3ace to your computer and use it in GitHub Desktop.
Save aloverso/0408c9257832f8ac67bf8d09cdae3ace to your computer and use it in GitHub Desktop.
mock a single function of a module in jest
function mockFunctions() {
const original = jest.requireActual('@reach/router');
return {
...original,
navigate: jest.fn(),
}
}
jest.mock('@reach/router', () => mockFunctions());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment