1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 11:28:51 +01:00
metamask-extension/ui/helpers/higher-order-components/with-modal-props/with-modal-props.test.js

32 lines
826 B
JavaScript
Raw Normal View History

import configureMockStore from 'redux-mock-store';
import React from 'react';
import { renderWithProvider } from '../../../../test/lib/render-helpers';
import withModalProps from './with-modal-props';
2018-09-19 23:30:52 +02:00
const mockState = {
appState: {
modal: {
modalState: {
props: {
prop1: 'prop1',
prop2: 2,
prop3: true,
},
},
},
},
};
2018-09-19 23:30:52 +02:00
describe('withModalProps', () => {
it('should return a component wrapped with modal state props', () => {
const TestComponent = () => <div className="test">Testing</div>;
const WrappedComponent = withModalProps(TestComponent);
const store = configureMockStore()(mockState);
const { container } = renderWithProvider(
<WrappedComponent store={store} />,
);
2018-09-19 23:30:52 +02:00
expect(container).toMatchSnapshot();
});
});