Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6bd24be

Browse files
committed
fix: format
1 parent 0c91f48 commit 6bd24be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

site/e2e/tests/organizations/idpRoleSync.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ test.describe("IdpRoleSyncPage", () => {
145145
await page.getByRole("combobox").click();
146146
await page.waitForTimeout(1000);
147147

148-
const option = await page.getByRole("option", { name: /Organization Admin/i });
148+
const option = await page.getByRole("option", {
149+
name: /Organization Admin/i,
150+
});
149151

150152
await expect(option).toBeAttached({ timeout: 30000 });
151153
await expect(option).toBeVisible();
@@ -159,9 +161,7 @@ test.describe("IdpRoleSyncPage", () => {
159161
// Verify new mapping appears in table
160162
const newRow = page.getByTestId(`role-${idpRoleName}`);
161163
await expect(newRow).toBeVisible();
162-
await expect(
163-
newRow.getByRole("cell", { name: idpRoleName }),
164-
).toBeVisible();
164+
await expect(newRow.getByRole("cell", { name: idpRoleName })).toBeVisible();
165165
await expect(
166166
newRow.getByRole("cell", { name: "organization-admin" }),
167167
).toBeVisible();

0 commit comments

Comments
 (0)