Files
SCM-Manager/scm-ui/ui-tests/i18n.ts
2019-10-23 16:23:46 +02:00

11 lines
313 B
TypeScript

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;
}
}));