2017-08-21 15:39:02 +03:00
|
|
|
/**
|
|
|
|
* @jest-environment jsdom
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import renderer from 'react-test-renderer';
|
|
|
|
import 'jest-styled-components';
|
|
|
|
|
2017-09-05 23:21:44 +03:00
|
|
|
import ServiceListItem from '@components/services/list-item';
|
2017-08-21 15:39:02 +03:00
|
|
|
import { Router, service } from '../../mocks';
|
|
|
|
|
|
|
|
it('renders <ServiceListItem /> without throwing', () => {
|
|
|
|
const tree = renderer
|
|
|
|
.create(
|
|
|
|
<Router>
|
|
|
|
<ServiceListItem service={service} />
|
|
|
|
</Router>
|
|
|
|
)
|
|
|
|
.toJSON();
|
|
|
|
expect(tree).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders child <ServiceListItem /> without throwing', () => {
|
|
|
|
const tree = renderer
|
2017-08-28 22:21:08 +03:00
|
|
|
.create(<ServiceListItem service={service} isChild />)
|
2017-08-21 15:39:02 +03:00
|
|
|
.toJSON();
|
|
|
|
expect(tree).toMatchSnapshot();
|
2017-09-07 12:25:54 +03:00
|
|
|
});
|