Skip to content

Instantly share code, notes, and snippets.

@makenova
Last active February 21, 2025 06:51
Show Gist options
  • Save makenova/ad7c45963eed8f9474a7931f54c62289 to your computer and use it in GitHub Desktop.
Save makenova/ad7c45963eed8f9474a7931f54c62289 to your computer and use it in GitHub Desktop.
Jest React Native mocking tips

Mocking default export compnents vs named export components is slightly different

When mocking defalut exports the following signature may be helpful.

jest.mock("./SomeDefaultComponent", () => {
  const { View } = jest.requireActual("react-native");
  return {
    __esModule: true,
    default: (props: any) => <View testID="some-default-component" {...props} />,
  };
});

For named exports, the following example may be helpful

jest.mock("./SomeNamedComponent", () => {
  const { View } = jest.requireActual("react-native");
  return {
    SomeComponent: (props: any) => (
      <View testID={"some-named-component"} {...props} />
    ),
  };
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment