Skip to content

Instantly share code, notes, and snippets.

@harry100
Last active February 2, 2021 03:58
Show Gist options
  • Save harry100/93067a0a7e26f649656ab5f42f0f6201 to your computer and use it in GitHub Desktop.
Save harry100/93067a0a7e26f649656ab5f42f0f6201 to your computer and use it in GitHub Desktop.
snippet to mock a HOC.
import React from 'react'
jest.mock('/path/to/@HOC', () => () =>
// eslint-disable-next-line react/display-name
Component => (props) => <Component {...props} />
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment