Skip to content

Commit

Permalink
fix: AppSelect.test.tsx test flake (#11104)
Browse files Browse the repository at this point in the history
* add timeout to flakey test

* Added changeset: Fix `AppSelect.test.tsx` test flake

---------

Co-authored-by: Banks Nussman <banks@nussman.us>
  • Loading branch information
bnussman-akamai and bnussman authored Oct 16, 2024
1 parent e96c819 commit 436c010
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-11104-tests-1729020207783.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Tests
---

Fix `AppSelect.test.tsx` test flake ([#11104](https://github.com/linode/manager/pull/11104))
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ describe('Marketplace', () => {

await waitFor(() => {
expect(getByPlaceholderText('Select category')).not.toBeDisabled();
});
},
{ timeout: 5_000 }
);

const select = getByPlaceholderText('Select category');

Expand Down

0 comments on commit 436c010

Please sign in to comment.