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

Fix flaky frontend question unit test (#42412)

parent b0bc469d
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,10 @@ import userEvent from "@testing-library/user-event";
import fetchMock from "fetch-mock";
import _ from "underscore";
import { setupCollectionItemsEndpoint } from "__support__/server-mocks";
import {
setupCollectionItemsEndpoint,
setupSearchEndpoints,
} from "__support__/server-mocks";
import {
mockGetBoundingClientRect,
mockScrollBy,
......@@ -363,6 +366,7 @@ describe("QuestionPickerModal", () => {
});
it("should automatically switch to the search tab when a search query is provided", async () => {
await setupSearchEndpoints([]);
await setupModal();
const searchInput = await screen.findByPlaceholderText(/search/i);
......@@ -380,6 +384,8 @@ describe("QuestionPickerModal", () => {
"aria-selected",
"true",
);
await screen.findByText(/Didn't find anything/i);
});
it("should switch back to the default tab when the search query is cleared", async () => {
......
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