import { render, screen } from '@testing-library/react'; import { describe, expect, it } from 'vitest'; import { Footer, type FooterProps } from '../footer'; const renderLink: FooterProps['renderLink'] = ({ href, children, className }) => ( {children} ); const defaultProps: FooterProps = { brand: 'GoodGo', description: 'Nền tảng bất động sản', copyright: '© 2024 GoodGo', linkGroups: [ { title: 'Sản phẩm', links: [ { label: 'Bán', href: '/ban' }, { label: 'Thuê', href: '/thue' }, ], }, ], renderLink, }; describe('Footer', () => { it('renders brand name', () => { render(