blob: c030ef38d22a1c64e594d02e5c61ef90e12bb0ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
import Link from 'generic-components/graph/Link.jsx';
import {shallow} from 'enzyme';
describe('Link component', () => {
it('should be rendered', () => {
const component = shallow(<Link/>);
expect(component).toHaveLength(1);
});
});
|