externalLink.spec.jsx 307 B

12345678910
  1. import React from 'react';
  2. import {shallow} from 'enzyme';
  3. import ExternalLink from 'app/components/externalLink';
  4. describe('ExternalLink', function() {
  5. it('renders', function() {
  6. let wrapper = shallow(<ExternalLink href="https://www.sentry.io/" />);
  7. expect(wrapper).toMatchSnapshot();
  8. });
  9. });