Skip to content

Commit

Permalink
fix: skip the flaky autocomplete test (#1855)
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhdaware authored Nov 30, 2023
1 parent 9aae01c commit 998e596
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,8 @@ describe('<BottomSheet /> & <Dropdown /> with <AutoComplete />', () => {
expect(selectInput.value).toBe('Mumbai');
});

it('should handle AutoComplete behaviour in multiselect', async () => {
// Flaky test. Skipping for now. Should be replicated into E2E eventually
it.skip('should handle AutoComplete behaviour in multiselect', async () => {
const user = userEvent.setup();
const { queryByTestId, getByLabelText, getByRole } = renderWithTheme(
<Dropdown selectionType="multiple">
Expand Down

0 comments on commit 998e596

Please sign in to comment.