Shallow render generic components
[aai/sparky-fe.git] / test / generic-components / graph / Link.test.js
1 import React from 'react';
2 import Link from 'generic-components/graph/Link.jsx';
3 import {shallow} from 'enzyme';
4
5 describe('Link component', () => {
6   it('should be rendered', () => {
7     const component = shallow(<Link/>);
8
9     expect(component).toHaveLength(1);
10   });
11 });