aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/link.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/links/link.test.tsx')
-rw-r--r--src/components/atoms/links/link.test.tsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/components/atoms/links/link.test.tsx b/src/components/atoms/links/link.test.tsx
deleted file mode 100644
index 9829c1b..0000000
--- a/src/components/atoms/links/link.test.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen } from '../../../../tests/utils';
-import { Link } from './link';
-
-describe('Link', () => {
- it('render a link', () => {
- render(<Link href="#">A link</Link>);
- expect(screen.getByRole('link')).toHaveTextContent('A link');
- });
-});