Skip to content

Commit

Permalink
remove failing test that is no longer releavant
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsnes committed Sep 17, 2024
1 parent be9289a commit aa8366f
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,4 @@ describe('Dropdown', () => {
expect(screen.getByText('Anchor')).toHaveAttribute('href', '/');
expect(screen.getByText('Anchor').tagName).toBe('A');
});

it('Group should have role="group"', async () => {
const { user } = await render();
const dropdownTrigger = screen.getByRole('button');

await act(async () => await user.click(dropdownTrigger));

expect(screen.getByRole('group')).toBeInTheDocument();
});
});

0 comments on commit aa8366f

Please sign in to comment.