Skip to content

Commit aad518b

Browse files
committed
test
1 parent 10c2967 commit aad518b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: packages/react-composites/tests/browser/call/hermetic/RoomsCallScreen.test.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ test.describe('Rooms DeviceButton tests for different roles', async () => {
3232
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-devices-presenter.png');
3333
});
3434

35-
test('All devices are shown for Attendee', async ({ page, serverUrl }) => {
35+
test.only('All devices are shown for Attendee', async ({ page, serverUrl }) => {
3636
const initialState = defaultMockCallAdapterState([], 'Attendee', true);
3737
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
3838
await waitForSelector(page, dataUiId(IDS.videoGallery));
@@ -62,10 +62,11 @@ test.describe('Rooms CallScreen tests for different roles', async () => {
6262
}
6363
});
6464

65-
test('Screen Share is disabled for Attendee', async ({ page, serverUrl }, testInfo) => {
65+
test.only('Screen Share is disabled for Attendee', async ({ page, serverUrl }, testInfo) => {
6666
const initialState = defaultMockCallAdapterState([], 'Attendee', true);
6767
await page.goto(buildUrlWithMockAdapter(serverUrl, { ...initialState }));
6868
await waitForSelector(page, dataUiId(IDS.videoGallery));
69+
await page.waitForTimeout(2000);
6970
expect(await stableScreenshot(page)).toMatchSnapshot('rooms-call-screen-attendee.png');
7071
if (isTestProfileMobile(testInfo)) {
7172
await pageClick(page, dataUiId(IDS.moreButton));

0 commit comments

Comments
 (0)