We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75e2042 commit ba2506cCopy full SHA for ba2506c
packages/kit-headless/src/components/select/select.spec.tsx
@@ -84,18 +84,4 @@ describe('Select', () => {
84
85
cy.findByRole('listbox').should('not.exist');
86
});
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
- });
101
0 commit comments