fix: add bigger timeout to pokedex test (#9551)
Add bigger timeout to pokedex test
This commit is contained in:
parent
d366ce33fa
commit
9c1a6de88e
1 changed files with 2 additions and 2 deletions
|
|
@ -35,10 +35,10 @@ withEventDeliveryModes(
|
|||
await page.getByTestId("button-send").last().click();
|
||||
|
||||
const stopButton = page.getByRole("button", { name: "Stop" });
|
||||
await stopButton.waitFor({ state: "visible", timeout: 30000 });
|
||||
await stopButton.waitFor({ state: "visible", timeout: 40000 });
|
||||
|
||||
if (await stopButton.isVisible()) {
|
||||
await expect(stopButton).toBeHidden({ timeout: 120000 });
|
||||
await expect(stopButton).toBeHidden({ timeout: 200000 });
|
||||
}
|
||||
|
||||
const output = await page.getByTestId("div-chat-message").innerText();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue