fix error in test

This commit is contained in:
Valere
2026-03-25 12:15:12 +01:00
parent cb6bef3849
commit 09092e97c8

View File

@@ -35,7 +35,7 @@ widgetTest("Footer interaction in PiP", async ({ addUser, browserName }) => {
await TestHelpers.joinCallFromLobby(valere.page); await TestHelpers.joinCallFromLobby(valere.page);
// wait a bit so that the PIP has rendered // wait a bit so that the PIP has rendered
await valere.page.waitForTimeout(1000); await valere.page.waitForTimeout(600);
// Switch to the other room, the call should go to PIP // Switch to the other room, the call should go to PIP
await TestHelpers.switchToRoomNamed(valere.page, "OtherRoom"); await TestHelpers.switchToRoomNamed(valere.page, "OtherRoom");
@@ -66,7 +66,7 @@ widgetTest("Footer interaction in PiP", async ({ addUser, browserName }) => {
await iFrame.getByTestId("videoTile").hover(); await iFrame.getByTestId("videoTile").hover();
await expect(audioBtn).toHaveAccessibleName("Unmute microphone"); await expect(audioBtn).toHaveAccessibleName("Unmute microphone");
await expect(audioBtn).toBeChecked(); await expect(audioBtn).not.toBeChecked();
await expect(videoBtn).toHaveAccessibleName("Start video"); await expect(videoBtn).toHaveAccessibleName("Start video");
await expect(videoBtn).not.toBeChecked(); await expect(videoBtn).not.toBeChecked();
} }