Skip to content

Commit

Permalink
hopeful fix for flakey mr test
Browse files Browse the repository at this point in the history
Signed-off-by: gitdallas <5322142+gitdallas@users.noreply.github.com>
  • Loading branch information
gitdallas committed Dec 17, 2024
1 parent 5d3efb2 commit 51c739d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ class ModelVersionDeployModal extends Modal {
}

selectProjectByName(name: string) {
this.findProjectSelector().click();
const selector = this.findProjectSelector();
selector.should('have.attr', 'aria-expanded', 'false');
selector.click();
this.find().findByRole('option', { name, timeout: 5000 }).click();
}
}
Expand Down

0 comments on commit 51c739d

Please sign in to comment.