insomnia/packages/insomnia-app/app/__jest__/with-redux-store.tsx
2021-09-15 16:16:04 -04:00

11 lines
475 B
TypeScript

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, {}>): FC => ({ children }) => (
<Provider store={store}>{children}</Provider>
);