Skip to content

Commit bac931e

Browse files
committed
missing review
1 parent 05765b1 commit bac931e

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

apps/meteor/tests/e2e/admin-room.spec.ts

+2-8
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,7 @@ test.describe.serial('admin-rooms', () => {
7373
const dropdown = await admin.dropdownFilterRoomType();
7474
await dropdown.click();
7575

76-
const privateOption = page.locator('text=Private channels');
77-
78-
await privateOption.waitFor();
79-
await privateOption.click();
76+
await page.locator('text=Private channels').click();
8077

8178
await expect(page.locator('text=No results found')).toBeVisible();
8279
});
@@ -86,10 +83,7 @@ test.describe.serial('admin-rooms', () => {
8683
const dropdown = await admin.dropdownFilterRoomType();
8784
await dropdown.click();
8885

89-
const privateOption = page.locator('text=Private channels');
90-
91-
await privateOption.waitFor();
92-
await privateOption.click();
86+
await page.locator('text=Private channels').click();
9387

9488
const workspaceButton = await admin.adminSectionButton(AdminSectionsHref.Workspace);
9589
await workspaceButton.click();

0 commit comments

Comments
 (0)