1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 15:50:06 +02:00
copilot/packages/cp-frontend/test/unit/containers/manifest/edit-or-create.js
2017-08-28 20:24:36 +01:00

24 lines
542 B
JavaScript

/**
* @jest-environment jsdom
*/
import React from 'react';
import renderer from 'react-test-renderer';
import 'jest-styled-components';
import DeploymentGroupEditOrCreate from '@containers/manifest/edit-or-create.js';
import { Router, Store } from '../../mocks';
it('renders <DeploymentGroupEditOrCreate /> without throwing', () => {
const tree = renderer
.create(
<Store>
<Router>
<DeploymentGroupEditOrCreate />
</Router>
</Store>
)
.toJSON();
expect(tree).toMatchSnapshot();
});