Skip to content

Commit

Permalink
revert find, update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed Jan 8, 2025
1 parent 6845610 commit 6016367
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ export class Modal {
}
}

// FIXME Remove `hidden: true` once PF version is upgraded to 6.1.0.
// https://issues.redhat.com/browse/RHOAIENG-11946
// https://github.com/patternfly/patternfly-react/issues/11041
find(): Cypress.Chainable<JQuery<HTMLElement>> {
return cy.findByRole('dialog', { name: this.title });
return cy.findByRole('dialog', { name: this.title, hidden: true });
}

findCloseButton(): Cypress.Chainable<JQuery<HTMLElement>> {
Expand Down

0 comments on commit 6016367

Please sign in to comment.