Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/meteor/tests/e2e/iframe-authentication.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ test.describe('iframe-authentication', () => {
});

await page.goto('/home');
await poUtils.mainContent.waitFor({ state: 'visible' });
await expect(poUtils.mainContent).toBeVisible();
});

Expand Down
3 changes: 2 additions & 1 deletion apps/meteor/tests/e2e/video-conference.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ test.describe('video conference', () => {
await page.keyboard.press('Space');

await expect(poHomeChannel.content.getVideoConfPopup(`Start a call in ${targetChannel}`)).toBeVisible();
await expect(poHomeChannel.content.btnVideoConfMic).toBeFocused();
await expect(poHomeChannel.content.btnVideoConfMic).toBeVisible();
await expect(poHomeChannel.content.btnVideoConfMic).toBeFocused({ timeout: 10_000 });
});

await test.step('dispatch start call button', async () => {
Expand Down
Loading