summaryrefslogtreecommitdiffstats
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.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/molecules/layout/page-footer.test.tsx b/src/components/molecules/layout/page-footer.test.tsx
new file mode 100644
index 0000000..2e95625
--- /dev/null
+++ b/src/components/molecules/layout/page-footer.test.tsx
@@ -0,0 +1,9 @@
+import { render, screen } from '@test-utils';
+import PageFooter from './page-footer';
+
+describe('PageFooter', () => {
+ it('renders a footer element', () => {
+ render(<PageFooter />);
+ expect(screen.getByRole('contentinfo')).toBeInTheDocument();
+ });
+});