import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { Footer, type FooterProps } from './footer'; const copyright: FooterProps['copyright'] = { dates: { start: '2017', end: '2022' }, owner: 'Lorem ipsum', icon: 'CC', }; const navItems: FooterProps['navItems'] = [ { id: 'legal-notice', href: '#', label: 'Legal notice' }, ]; describe('Footer', () => { it('renders the website copyright', () => { render(