insomnia/packages/insomnia-app/app/__jest__/with-redux-store.tsx

15 lines
566 B
TypeScript
Raw Normal View History

import React, { FC } from 'react';
import { Provider } from 'react-redux';
import { MockStoreEnhanced } from 'redux-mock-store';
import { RootState } from '../ui/redux/modules';
// eslint-disable-next-line react/display-name -- There's not a good way to do with a FunctionComponent while also maintaining the display name.
export const withReduxStore = (store: MockStoreEnhanced<RootState, {}>, Node?: React.ComponentType): FC => ({ children }) => {
return (
<Provider store={store}>
{Node ? <Node>{children}</Node> : children}
</Provider>
);
};