From 5dd1c76d1cb49178d34bf7410713363a8e1a6830 Mon Sep 17 00:00:00 2001 From: Valere Date: Wed, 22 Apr 2026 14:42:35 +0200 Subject: [PATCH] increase timeout of flaky test --- playwright/widget/pip-call.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/playwright/widget/pip-call.test.ts b/playwright/widget/pip-call.test.ts index ef19a36e..dab2d5fd 100644 --- a/playwright/widget/pip-call.test.ts +++ b/playwright/widget/pip-call.test.ts @@ -45,7 +45,10 @@ widgetTest("Put call in PIP", async ({ addUser, browserName }) => { // check that the video is on await expect( frame.getByRole("switch", { name: "Stop video", checked: true }), - ).toBeVisible(); + ).toBeVisible({ + // Increase timeout, as this expect was flaky + timeout: 10000, + }); // Switch to the other room, the call should go to PIP await TestHelpers.switchToRoomNamed(valere.page, "DoubleTask");