Skip to content
Merged
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/video-conference.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ test.describe('video conference', () => {
await page.keyboard.press('Tab');
await page.keyboard.press('Space');

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const backdropStyle = css`
`;

const VideoConfPopupBackdrop = ({ children }: { children: ReactNode }): ReactElement => (
<Box m={40} className={backdropStyle}>
<Box m={40} zIndex={99} className={backdropStyle}>
{children}
</Box>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`renders StartCall without crashing 1`] = `
<body>
<div>
<div
class="rcx-box rcx-box--full rcx-css-11d1wak rcx-css-tzpx07"
class="rcx-box rcx-box--full rcx-css-11d1wak rcx-css-veoob9"
>
<div
aria-label="Start Call"
Expand Down
Loading