aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/social-link.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/links/social-link.test.tsx')
-rw-r--r--src/components/atoms/links/social-link.test.tsx19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/components/atoms/links/social-link.test.tsx b/src/components/atoms/links/social-link.test.tsx
deleted file mode 100644
index d2609ca..0000000
--- a/src/components/atoms/links/social-link.test.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen } from '../../../../tests/utils';
-import { SocialLink } from './social-link';
-
-/**
- * Next.js mock images to use next/image component. So for now, I need to mock
- * the svg files manually.
- */
-jest.mock('@assets/images/social-media/github.svg', () => 'svg-file');
-jest.mock('@assets/images/social-media/gitlab.svg', () => 'svg-file');
-jest.mock('@assets/images/social-media/linkedin.svg', () => 'svg-file');
-jest.mock('@assets/images/social-media/twitter.svg', () => 'svg-file');
-
-describe('SocialLink', () => {
- it('render a social link', () => {
- render(<SocialLink name="Github" url="#" />);
- expect(screen.getByRole('link')).toHaveAccessibleName('Github');
- });
-});