mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 15:50:06 +02:00
28 lines
631 B
JavaScript
28 lines
631 B
JavaScript
|
|
||
|
/**
|
||
|
* @jest-environment jsdom
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
import renderer from 'react-test-renderer';
|
||
|
import 'jest-styled-components';
|
||
|
|
||
|
import { DeploymentGroupList } from '@containers/deployment-groups/list.js';
|
||
|
import { Router, Store, deploymentGroups } from '../../mocks';
|
||
|
|
||
|
it('renders <DeploymentGroupList /> without throwing', () => {
|
||
|
const tree = renderer
|
||
|
.create(
|
||
|
<Store>
|
||
|
<Router>
|
||
|
<DeploymentGroupList
|
||
|
deploymentGroups={deploymentGroups}
|
||
|
match={{ path: '' }}
|
||
|
/>
|
||
|
</Router>
|
||
|
</Store>
|
||
|
)
|
||
|
.toJSON();
|
||
|
expect(tree).toMatchSnapshot();
|
||
|
});
|