aboutsummaryrefslogtreecommitdiffstats
path: root/__tests__/jest/components/Copyright.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to '__tests__/jest/components/Copyright.test.tsx')
-rw-r--r--__tests__/jest/components/Copyright.test.tsx14
1 files changed, 0 insertions, 14 deletions
diff --git a/__tests__/jest/components/Copyright.test.tsx b/__tests__/jest/components/Copyright.test.tsx
deleted file mode 100644
index 5f6f287..0000000
--- a/__tests__/jest/components/Copyright.test.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import Copyright from '@components/Copyright/Copyright';
-import { render, screen } from '@test-utils';
-import '../__mocks__/matchMedia.mock';
-
-describe('Copyright', () => {
- it('renders the Copyright component', () => {
- render(<Copyright />);
- });
-
- it('displays author name', () => {
- render(<Copyright />);
- expect(screen.getByText('Armand Philippot')).toBeInTheDocument();
- });
-});