WIP: Look into functional test flakes (#6312)

* Add code

* trigger ci

* Add await

* format
This commit is contained in:
Freddy Boulton 2023-11-07 14:38:52 -05:00 committed by GitHub
parent 4b1011bab0
commit 25e380078a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,20 +6,19 @@ test("Gallery preview mode displays all images correctly.", async ({
await page.getByRole("button", { name: "Run" }).click();
await page.getByLabel("Thumbnail 2 of 3").click();
expect(await page.getByTestId("detailed-image").getAttribute("src")).toEqual(
"https://gradio-builds.s3.amazonaws.com/assets/lite-logo.png"
);
await expect(
await page.getByTestId("detailed-image").getAttribute("src")
).toEqual("https://gradio-builds.s3.amazonaws.com/assets/lite-logo.png");
expect(await page.getByTestId("thumbnail 1").getAttribute("src")).toEqual(
"https://gradio-builds.s3.amazonaws.com/assets/cheetah-003.jpg"
);
await expect(
await page.getByTestId("thumbnail 1").getAttribute("src")
).toEqual("https://gradio-builds.s3.amazonaws.com/assets/cheetah-003.jpg");
});
test("Gallery select event returns the right value", async ({ page }) => {
await page.getByRole("button", { name: "Run" }).click();
await page.getByLabel("Thumbnail 2 of 3").click();
await page.waitForTimeout(200);
expect(await page.getByLabel("Select Data")).toHaveValue(
await expect(page.getByLabel("Select Data")).toHaveValue(
"https://gradio-builds.s3.amazonaws.com/assets/lite-logo.png"
);
});