File size: 2,287 Bytes
a03b3ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
import { test, expect } from "@gradio/tootils";
test(".success should not run if function fails", async ({ page }) => {
const textbox = page.getByLabel("Result");
await expect(textbox).toHaveValue("");
await page.click("text=Trigger Failure");
expect(textbox).toHaveValue("");
});
test(".success event runs after function successfully completes", async ({
page
}) => {
const textbox = page.getByLabel("Result");
await page.click("text=Trigger Success");
await expect(textbox).toHaveValue("Success event triggered");
});
test("Consecutive .success event is triggered successfully", async ({
page
}) => {
const textbox = page.getByLabel("Consecutive Event");
const first = page.getByLabel("Result");
await page.click("text=Trigger Consecutive Success");
await expect(textbox).toHaveValue("Consecutive Event Triggered");
expect(first).toHaveValue("First Event Trigered");
});
test("gr.Error makes the toast show up", async ({ page }) => {
await page.click("text=Trigger Failure");
const toast = page.getByTestId("toast-body");
expect(toast).toContainText("error");
const close = page.getByTestId("toast-close");
await close.click();
await expect(page.getByTestId("toast-body")).toHaveCount(0);
});
test("ValueError makes the toast show up when show_error=True", async ({
page
}) => {
await page.click("text=Trigger Failure With ValueError");
const toast = page.getByTestId("toast-body");
expect(toast).toContainText("error");
const close = page.getByTestId("toast-close");
await close.click();
await expect(page.getByTestId("toast-body")).toHaveCount(0);
});
test("gr.Info makes the toast show up", async ({ page }) => {
await page.click("text=Trigger Info");
const toast = await page.getByTestId("toast-body");
expect(toast).toContainText("This is some info");
const close = await page.getByTestId("toast-close");
await close.click();
await expect(page.getByTestId("toast-body")).toHaveCount(0);
});
test("gr.Warning makes the toast show up", async ({ page }) => {
await page.click("text=Trigger Warning");
const toast = page.getByTestId("toast-body");
expect(toast).toContainText("This is a warning!");
const close = page.getByTestId("toast-close");
await close.click();
await expect(page.getByTestId("toast-body")).toHaveCount(0);
});
|