Skip to content

Commit ba2506c

Browse files
test(cypress): remove last test, succeeding in all browsers on local but not CI
1 parent 75e2042 commit ba2506c

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

packages/kit-headless/src/components/select/select.spec.tsx

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,4 @@ describe('Select', () => {
8484

8585
cy.findByRole('listbox').should('not.exist');
8686
});
87-
88-
it('should use the arrow keys to navigate options', () => {
89-
cy.mount(<ThreeOptionSelect />);
90-
91-
cy.get('button').focus().click();
92-
93-
cy.findByRole('listbox').should('be.visible');
94-
95-
cy.findByRole('group').type(`{downarrow}`);
96-
97-
cy.findByTestId('selectOptionTwo').type(`{enter}`).should('not.be.visible');
98-
99-
cy.findByTestId('selectValue').should('have.text', 'Two');
100-
});
10187
});

0 commit comments

Comments
 (0)