Skip to content

Commit a320959

Browse files
test(combobox): remove unneeded test
1 parent ac31f93 commit a320959

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -99,19 +99,6 @@ describe('Critical Functionality', () => {
9999
cy.get('button').click().should('have.attr', 'aria-expanded', 'true');
100100
});
101101

102-
it.only(`GIVEN a Combobox component with a trigger
103-
WHEN a trigger is clicked, the listbox is open, and the first open clicked
104-
THEN the first option should be selected
105-
`, () => {
106-
cy.mount(<StringCombobox />);
107-
108-
cy.get('button').click();
109-
110-
cy.get('li').first().click();
111-
112-
cy.get('li').first().should('have.attr', 'aria-selected');
113-
});
114-
115102
it(`GIVEN a Combobox component with an open listbox and trigger
116103
WHEN the trigger is clicked,
117104
THEN the listbox should close`, () => {

0 commit comments

Comments
 (0)