Skip to content

Commit

Permalink
Fix test id
Browse files Browse the repository at this point in the history
  • Loading branch information
canac committed Dec 28, 2023
1 parent 3f2bfc1 commit 602164c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Shared/MultilineSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ export const MultilineSkeleton: React.FC<MultilineSkeletonProps> = ({
}) => (
<>
{new Array(lines).fill(undefined).map((_, index) => (
<StyledSkeleton key={index} data-testid="Line" {...props} />
<StyledSkeleton
key={index}
data-testid="MultilineSkeletonLine"
{...props}
/>
))}
</>
);

0 comments on commit 602164c

Please sign in to comment.