diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-10-03 19:36:03 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-11-11 18:14:41 +0100 |
| commit | 0e60743d140aff66eca6df712f653ee20f5d4ef3 (patch) | |
| tree | e72bc8bf2314a26ba3c8e27e571d72e203bbf0c8 /src/components/organisms/widgets/social-media.test.tsx | |
| parent | a3fb0aa94717aafae897ac293488c43a099c0b2b (diff) | |
refactor(components): rewrite SocialLink component
* replace default label with a label prop
* rename name prop to icon prop
Diffstat (limited to 'src/components/organisms/widgets/social-media.test.tsx')
| -rw-r--r-- | src/components/organisms/widgets/social-media.test.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/organisms/widgets/social-media.test.tsx b/src/components/organisms/widgets/social-media.test.tsx index c0786ad..2cd3afb 100644 --- a/src/components/organisms/widgets/social-media.test.tsx +++ b/src/components/organisms/widgets/social-media.test.tsx @@ -1,10 +1,10 @@ import { describe, expect, it } from '@jest/globals'; -import { render, screen } from '../../../../tests/utils'; -import { SocialMedia, Media } from './social-media'; +import { render, screen as rtlScreen } from '../../../../tests/utils'; +import { SocialMedia, type Media } from './social-media'; const media: Media[] = [ - { name: 'Github', url: '#' }, - { name: 'LinkedIn', url: '#' }, + { icon: 'Github', id: 'github', label: 'Github', url: '#' }, + { icon: 'LinkedIn', id: 'gitlab', label: 'Gitlab', url: '#' }, ]; const title = 'Dolores ut ut'; const titleLevel = 2; @@ -22,7 +22,7 @@ describe('SocialMedia', () => { it('renders the widget title', () => { render(<SocialMedia media={media} title={title} level={titleLevel} />); expect( - screen.getByRole('heading', { + rtlScreen.getByRole('heading', { level: titleLevel, name: new RegExp(title, 'i'), }) @@ -31,6 +31,6 @@ describe('SocialMedia', () => { it('renders the correct number of items', () => { render(<SocialMedia media={media} title={title} level={titleLevel} />); - expect(screen.getAllByRole('listitem')).toHaveLength(media.length); + expect(rtlScreen.getAllByRole('listitem')).toHaveLength(media.length); }); }); |
