Skip to content

Commit

Permalink
test: [M3-8734] - Reduce Linode rebuild test flakiness (linode#11119)
Browse files Browse the repository at this point in the history
* Address test flake by waiting for Image data before interacting with autocomplete

* Add changeset

---------

Co-authored-by: Joe D'Amore <jdamore@linode.com>
  • Loading branch information
jdamore-linode and Joe D'Amore authored Oct 17, 2024
1 parent 875a0b0 commit 6ccccdb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-11119-tests-1729169604255.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Tests
---

Reduce flakiness of Linode rebuild test ([#11119](https://github.com/linode/manager/pull/11119))
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ describe('rebuild linode', () => {
.findByText('Choose an image')
.should('be.visible')
.click()
.type(`${image}{enter}`);
.type(`${image}`);

ui.select.findItemByText(image).should('be.visible').click();

assertPasswordComplexity(rootPassword, 'Good');

Expand Down

0 comments on commit 6ccccdb

Please sign in to comment.