123456789101112131415161718192021222324 |
- 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(
- <AlertLink to="/settings/accounts/notifications">
- This is an external link button
- </AlertLink>
- );
- expect(container).toSnapshot();
- });
- it('renders with icon', function () {
- const {container} = mountWithTheme(
- <AlertLink to="/settings/accounts/notifications" icon={<IconMail />}>
- This is an external link button
- </AlertLink>
- );
- expect(container).toSnapshot();
- });
- });
|