Skip to content

Commit

Permalink
fix create tracker test (#807)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Brugarolas <[email protected]>
  • Loading branch information
abrugaro authored Nov 14, 2023
1 parent e6c2ae3 commit 4d49f5b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,9 @@ export class MigrationWave {
cy.contains(this.name)
.parents("tr")
.within(() => {
cy.get(MigrationWaveView.waveStatusColumn).click();
cy.get(MigrationWaveView.waveStatusColumn)
.should("not.contain", "N/A", { timeout: 10 * SEC })
.click();
});
}

Expand Down

0 comments on commit 4d49f5b

Please sign in to comment.