import { render, screen } from '@tests/utils'; import Toolbar from './toolbar'; const nav = [ { id: 'home-link', href: '/', label: 'Home' }, { id: 'blog-link', href: '/blog', label: 'Blog' }, { id: 'cv-link', href: '/cv', label: 'CV' }, { id: 'contact-link', href: '/contact', label: 'Contact' }, ]; describe('Toolbar', () => { it('renders a navigation menu', () => { render( ); expect(screen.getByRole('navigation')).toBeInTheDocument(); }); }); ody>
summaryrefslogtreecommitdiffstats
blob: e90d5a6f352f03ce7b454a46432f2de1c0c84456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21