Skip to content

Commit

Permalink
Avoid error on unlink test (#1309)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Brugarolas <[email protected]>
  • Loading branch information
abrugaro authored Jan 17, 2025
1 parent a58bce5 commit 462924c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ export class Application {
.eq(0)
.children("button.pf-m-link")
.eq(0)
.click();
.click({ force: true });
// Need to wait until the application is unlinked from Jira and reflected in the wave
cy.wait(3 * SEC);
this.closeApplicationDetails();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ export class MigrationWave {
cy.contains(application.name)
.parent()
.within(() => {
cy.get(MigrationWaveView.unlinkApplicationButton).click();
cy.get(MigrationWaveView.unlinkApplicationButton).click({ force: true });
// Need to wait until the application is unlinked from Jira and reflected in the wave
cy.wait(3 * SEC);
});
Expand Down

0 comments on commit 462924c

Please sign in to comment.