Skip to content

Commit

Permalink
Add test ID to account popover icon for improved testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ost-ptk committed Jan 13, 2025
1 parent 9a6d96b commit bd55159
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/libs/ui/components/account-popover/account-popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,11 @@ export const AccountActionsMenuPopover = ({
</PopoverItemsContainer>
)}
>
<SvgIcon src="assets/icons/more.svg" onClick={() => setIsOpen(!isOpen)} />
<SvgIcon
src="assets/icons/more.svg"
data-testid="popover-children-container"
onClick={() => setIsOpen(!isOpen)}
/>
</Popover>
);
};

0 comments on commit bd55159

Please sign in to comment.