jest.mock("react-i18next", () => ({ // this mock makes sure any components using the translate HoC receive the t function as a prop withTranslation: () => (Component: any) => { Component.defaultProps = { ...Component.defaultProps, t: (key: string) => key }; return Component; } }));