aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/layout/page-footer.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/layout/page-footer.test.tsx')
-rw-r--r--src/components/molecules/layout/page-footer.test.tsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/components/molecules/layout/page-footer.test.tsx b/src/components/molecules/layout/page-footer.test.tsx
deleted file mode 100644
index dbd20f5..0000000
--- a/src/components/molecules/layout/page-footer.test.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen as rtlScreen } from '../../../../tests/utils';
-import { PageFooter } from './page-footer';
-
-describe('PageFooter', () => {
- it('renders a footer element', () => {
- render(<PageFooter />);
- expect(rtlScreen.getByRole('contentinfo')).toBeInTheDocument();
- });
-});