Skip to content

Instantly share code, notes, and snippets.

@sketchbuch
Last active January 24, 2020 07:05
Show Gist options
  • Save sketchbuch/861862858cb7528dfa044b4a4a9dbe13 to your computer and use it in GitHub Desktop.
Save sketchbuch/861862858cb7528dfa044b4a4a9dbe13 to your computer and use it in GitHub Desktop.
TESTING - Jest mock translate for jest / react-i18next with components
import { translate } from 'react-i18next'
jest.mock('react-i18next', () => ({
t: (key: string) => key,
translate: () => Component => {
Component.defaultProps = { ...Component.defaultProps, t: () => '' }
return Component
},
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment