aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/back-to-top.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/buttons/back-to-top.test.tsx')
-rw-r--r--src/components/molecules/buttons/back-to-top.test.tsx14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/components/molecules/buttons/back-to-top.test.tsx b/src/components/molecules/buttons/back-to-top.test.tsx
deleted file mode 100644
index a775841..0000000
--- a/src/components/molecules/buttons/back-to-top.test.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen as rtlScreen } from '../../../../tests/utils';
-import { BackToTop } from './back-to-top';
-
-describe('BackToTop', () => {
- it('renders a BackToTop link', () => {
- const id = 'top';
-
- render(<BackToTop to={id} />);
-
- expect(rtlScreen.getByRole('link')).toHaveAccessibleName('Back to top');
- expect(rtlScreen.getByRole('link')).toHaveAttribute('href', `#${id}`);
- });
-});