import { render, screen } from '@tests/utils'; import Select from './select'; const selectOptions = [ { id: 'option1', name: 'Option 1', value: 'option1' }, { id: 'option2', name: 'Option 2', value: 'option2' }, { id: 'option3', name: 'Option 3', value: 'option3' }, ]; const selected = selectOptions[0]; describe('Select', () => { it('should correctly set default option', () => { render( The frontend of my personal website.Armand Philippot
summaryrefslogtreecommitdiffstats
path: root/src/components/Icons/index.tsx
blob: 5fe2c19ade646f960735f83f4d90778af7ddc523 (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