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/navigation/menu.js

25 lines
470 B
JavaScript
Raw Normal View History

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