import { render, screen } from '@test-utils'; import SocialMedia, { Media } from './social-media'; const media: Media[] = [ { name: 'Github', url: '#' }, { name: 'LinkedIn', url: '#' }, ]; const title = 'Dolores ut ut'; const titleLevel = 2; /** * Next.js mock images with next/image component. So for now, I need to mock * the svg files manually. */ jest.mock('@assets/images/social-media/github.svg', () => 'svg-file'); jest.mock('@assets/images/social-media/linkedin.svg', () => 'svg-file'); describe('SocialMedia', () => { it('renders the widget title', () => { render(); expect( screen.getByRole('heading', { level: titleLevel, name: new RegExp(title, 'i'), }) ).toBeInTheDocument(); }); it('renders the correct number of items', () => { render(); expect(screen.getAllByRole('listitem')).toHaveLength(media.length); }); }); c838'/> The frontend of my personal website.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
blob: 9965c5e4568f41474ab3272f38631ffb63496c7c (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
47
48
49
50
51
52
53
54
55
56