Skip to content

Instantly share code, notes, and snippets.

@akinncar
Created June 23, 2021 14:36
Show Gist options
  • Save akinncar/e07a0a6ccf104667c9935a09dee5b41a to your computer and use it in GitHub Desktop.
Save akinncar/e07a0a6ccf104667c9935a09dee5b41a to your computer and use it in GitHub Desktop.
Mock custom hooks on jest
// outside component (after imports)
const useAuth = jest.spyOn(require('contexts/AuthContext'), 'useAuth')
const user = {
user: {
name: 'Roberto Firmino',
},
}
// inside describe
useAuth.mockReturnValue(user)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment