Skip to content
Snippets Groups Projects
Unverified Commit 3d126564 authored by Ryan Laurie's avatar Ryan Laurie Committed by GitHub
Browse files

Fix another flaky question picker unit test (#42421)

parent 1e9e60a0
No related branches found
No related tags found
No related merge requests found
......@@ -385,10 +385,12 @@ describe("QuestionPickerModal", () => {
"true",
);
await screen.findByText(/loading/i);
await screen.findByText(/Didn't find anything/i);
});
it("should switch back to the default tab when the search query is cleared", async () => {
await setupSearchEndpoints([]);
await setupModal();
const searchInput = await screen.findByPlaceholderText(/search/i);
......@@ -407,6 +409,9 @@ describe("QuestionPickerModal", () => {
"true",
);
await screen.findByText(/loading/i);
await screen.findByText(/Didn't find anything/i);
await userEvent.clear(searchInput);
expect(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment