2017-06-06 16:30:43 +03:00
|
|
|
/**
|
2017-08-21 15:39:02 +03:00
|
|
|
* @jest-environment jsdom
|
2017-06-06 16:30:43 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import renderer from 'react-test-renderer';
|
2017-06-12 01:58:22 +03:00
|
|
|
import 'jest-styled-components';
|
|
|
|
|
2017-06-06 16:30:43 +03:00
|
|
|
import Header from '@components/navigation/header';
|
2017-08-21 15:39:02 +03:00
|
|
|
import { Router } from '../../mocks';
|
2017-06-06 16:30:43 +03:00
|
|
|
|
|
|
|
it('renders <Header /> without throwing', () => {
|
2017-07-26 17:28:14 +03:00
|
|
|
const tree = renderer
|
|
|
|
.create(
|
|
|
|
<Router>
|
|
|
|
<Header />
|
|
|
|
</Router>
|
|
|
|
)
|
|
|
|
.toJSON();
|
2017-08-21 15:39:02 +03:00
|
|
|
expect(tree).toMatchSnapshot();
|
2017-06-06 16:30:43 +03:00
|
|
|
});
|