We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5854a1 commit 8bd0834Copy full SHA for 8bd0834
tests/e2e-frontend/tests/userMenu/userMenuWindows.spec.js
@@ -37,7 +37,7 @@ test.describe.serial(`User Menu Windows: ${product}`, () => {
37
test(`Organizations window`, async () => {
38
// open user menu
39
await page.getByTestId("userMenuBtn").click();
40
- // open Organization
+ // open Organization window
41
await page.getByTestId("userMenuOrganizationsBtn").click();
42
43
// make sure the window opens
@@ -47,5 +47,8 @@ test.describe.serial(`User Menu Windows: ${product}`, () => {
47
const organizationListItems = page.getByTestId("organizationListItem");
48
const count = await organizationListItems.count();
49
expect(count > 0).toBeTruthy();
50
+
51
+ // close window
52
+ await page.getByTestId("organizationsWindowCloseBtn").click();
53
});
54
0 commit comments