test(ourteam): add comprehensive unit tests for TeamMemberCard (Vitest + RTL) #117
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Adds a comprehensive unit test suite for the
TeamMemberCard
component using Vitest + React Testing Library.Tests are co-located next to the component and focus on behavior (not styles), including avatar rendering/fallback, GitHub link attributes, role chip labeling, and click behavior for roles with/without links.
Closes #116
What change does this PR introduce?
What is the proposed approach?
react-i18next
mocked to return default strings for stability.useIsDesktop
mocked to validate both desktop and mobile code paths.<img>
whenavatarUrl
is provided; hides<img>
ononError
(fallback behavior).avatarUrl
is absent.href
,target="_blank"
, andrel="noopener noreferrer"
.project
is present.project
is absent.link
callswindow.open(link)
; clicking a role withoutlink
is a no-op.Checklist: