mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
WIP: Look into functional test flakes (#6312)
* Add code * trigger ci * Add await * format
This commit is contained in:
parent
4b1011bab0
commit
25e380078a
@ -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"
|
||||
);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user