import React from 'react'; import { shallow } from 'enzyme'; import Link from './'; describe('Link', () => { it('should render correctly', () => { const wrapper = shallow({`I'm a Link!`}); expect(wrapper).toMatchSnapshot(); }); });