File size: 824 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import React from 'react';
import { render } from 'react-testing-library';
import { Provider } from 'react-redux';
import { IntlProvider } from 'react-intl';
import { ConnectedRouter } from 'connected-react-router/immutable';
import { createMemoryHistory } from 'history';
import Header from '../index';
import configureStore from '../../../configureStore';
describe('<Header />', () => {
const history = createMemoryHistory();
const store = configureStore({}, history);
it('should render a div', () => {
const { container } = render(
<Provider store={store}>
<IntlProvider locale="en">
<ConnectedRouter history={history}>
<Header />
</ConnectedRouter>
</IntlProvider>
</Provider>,
);
expect(container.firstChild).toMatchSnapshot();
});
});
|