Skip to content

Instantly share code, notes, and snippets.

@arvinsim
Created May 31, 2022 08:57
Show Gist options
  • Select an option

  • Save arvinsim/00b2547af44cefe0b07f7e1ab4e7f7be to your computer and use it in GitHub Desktop.

Select an option

Save arvinsim/00b2547af44cefe0b07f7e1ab4e7f7be to your computer and use it in GitHub Desktop.
Mocking <Link> components in NextJS
jest.mock(
'next/link',
() =>
({ children }: { children: ReactChildren }): ReactChildren =>
children,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment