aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/nav-link.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/links/nav-link.test.tsx')
-rw-r--r--src/components/atoms/links/nav-link.test.tsx13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/components/atoms/links/nav-link.test.tsx b/src/components/atoms/links/nav-link.test.tsx
deleted file mode 100644
index acf3225..0000000
--- a/src/components/atoms/links/nav-link.test.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen } from '../../../../tests/utils';
-import { NavLink } from './nav-link';
-
-describe('NavLink', () => {
- it('renders a nav link to blog page', () => {
- render(<NavLink href="/blog" label="Blog" />);
- expect(screen.getByRole('link', { name: 'Blog' })).toHaveAttribute(
- 'href',
- '/blog'
- );
- });
-});