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