Files
SCM-Manager/scm-ui/ui-tests/i18n.js

8 lines
274 B
JavaScript
Raw Normal View History

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