mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
2b6cbf2590
* rename * save patch * fix everything * format * rm file * fix stuff * tweaks * tweaks * tweaks * tweaks * tweaks * asd * asd * asd * asd * asd * asd * asd * fix * Fix scripts/run_lite.sh and scripts/build_lite.sh (#9170) * fixes * fixes * asd * asd * asd * review comments * fiux types * fiux types * make fileexpolorer public * format * lint * lint --------- Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import { test, expect } from "@self/tootils";
|
|
|
|
test("When the queue is full the queue full message gets shown. Also when there is an exception in a user function the queue does not get blocked", async ({
|
|
page
|
|
}) => {
|
|
await page.pause();
|
|
await page.getByRole("button", { name: "First Call" }).click();
|
|
await page.getByRole("button", { name: "Second Call" }).click();
|
|
await page.getByRole("button", { name: "Third Call" }).click();
|
|
await page.getByRole("button", { name: "Fourth Call" }).click();
|
|
|
|
await expect(page.getByTestId("toast-body")).toHaveCount(2, {
|
|
timeout: 10000
|
|
});
|
|
const all_toast = (await page.getByTestId("toast-body").all()).map(
|
|
async (t) => await t.innerText()
|
|
);
|
|
const all_text = await Promise.all(all_toast);
|
|
|
|
expect(all_text.join("\n")).toContain("This is a gradio error");
|
|
expect(all_text.join("\n")).toContain("This application is currently busy");
|
|
|
|
await expect
|
|
.poll(async () => page.getByLabel("First Result").inputValue())
|
|
.toBeTruthy();
|
|
await expect
|
|
.poll(async () => page.getByLabel("First Result").inputValue())
|
|
.toBeTruthy();
|
|
});
|