import Branding from '@components/Branding/Branding'; import { render, screen } from '@test-utils'; describe('Branding', () => { it('renders the title wrapped with an h1 element on homepage', () => { render(); expect( screen.getByRole('heading', { level: 1, name: 'Armand Philippot' }) ).toBeInTheDocument(); }); it('renders the title wrapped without an h1 element on other pages', () => { render(); expect( screen.queryByRole('heading', { level: 1, name: 'Armand Philippot' }) ).not.toBeInTheDocument(); }); it('renders the baseline', () => { render(); // Currently, only French translation is returned. expect(screen.getByText('Intégrateur web')).toBeInTheDocument(); }); }); ain'>index : www.armandphilippot.com
The frontend of my personal website.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
blob: 241c9c35961f315275af001ef530671a47468db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46