Skip to content

feat: orgs IDP sync - add combobox to select claim field value when sync field is set #16335

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Feb 5, 2025
Prev Previous commit
fix: format
  • Loading branch information
jaaydenh committed Feb 5, 2025
commit cff6e0188c15594fa088fc813a0eb721c63ec1ac
4 changes: 1 addition & 3 deletions site/e2e/tests/deployment/idpOrgSync.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,7 @@ test.describe("IdpOrgSyncPage", () => {
// Verify new mapping appears in table
const newRow = page.getByTestId(`idp-org-${idpOrgName}`);
await expect(newRow).toBeVisible();
await expect(
newRow.getByRole("cell", { name: idpOrgName }),
).toBeVisible();
await expect(newRow.getByRole("cell", { name: idpOrgName })).toBeVisible();
await expect(newRow.getByRole("cell", { name: orgName })).toBeVisible();

await expect(
Expand Down
Loading