import {render} from 'sentry-test/reactTestingLibrary'; import AlertLink from 'sentry/components/alertLink'; import {IconMail} from 'sentry/icons'; describe('AlertLink', function () { it('renders', function () { const {container} = render( This is an external link button ); expect(container).toSnapshot(); }); it('renders with icon', function () { const {container} = render( }> This is an external link button ); expect(container).toSnapshot(); }); });