mirror of
https://github.com/yldio/copilot.git
synced 2024-11-16 00:00:06 +02:00
28 lines
684 B
JavaScript
28 lines
684 B
JavaScript
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
|
|
import React from 'react';
|
|
import renderer from 'react-test-renderer';
|
|
import 'jest-styled-components';
|
|
|
|
import ServiceListItem from '@components/services/list-item';
|
|
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
|
|
.create(<ServiceListItem service={service} isChild />)
|
|
.toJSON();
|
|
expect(tree).toMatchSnapshot();
|
|
}); |