We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a1aaf commit d66d389Copy full SHA for d66d389
1 file changed
packages/react-integration/cypress/integration/searchinput.spec.ts
@@ -53,7 +53,8 @@ describe('Search Input Demo Test', () => {
53
it('Verify advanced search and its handlers work', () => {
54
cy.get('#enabled-search .pf-v6-c-panel').should('not.exist');
55
cy.get('#enabled-search .pf-v6-c-input-group .pf-v6-c-input-group__item > button').eq(0).click();
56
- cy.get('#enabled-search .pf-v6-c-panel').should('be.visible');
+ // Tooltip visibility is async due to requestAnimationFrame-based positioning
57
+ cy.get('#enabled-search .pf-v6-c-panel', { timeout: 6000 }).should('be.visible');
58
59
cy.get('#enabled-search .pf-v6-c-form-control > input').eq(0).type('test');
60
cy.get('#enabled-search .pf-v6-c-text-input-group__text-input').should('have.value', 'username:test');
0 commit comments