Skip to content

Commit

Permalink
Fix failure in identity_providers_test.spec.ts after old LinkedId pro…
Browse files Browse the repository at this point in the history
…vider was deprecated

Closes #23118
  • Loading branch information
stianst committed Sep 11, 2023
1 parent ed339de commit ba58b51
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions js/apps/admin-ui/cypress/e2e/identity_providers_test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ describe("Identity provider test", () => {
{ testName: "Gitlab", displayName: "Gitlab", alias: "gitlab" },
{ testName: "Google", displayName: "Google", alias: "google" },
{ testName: "Instagram", displayName: "Instagram", alias: "instagram" },
{ testName: "Linkedin", displayName: "LinkedIn", alias: "linkedin" },
{
testName: "LinkedIn OpenID Connect",
displayName: "LinkedIn OpenID Connect",
alias: "linkedin-openid-connect"

Check failure on line 86 in js/apps/admin-ui/cypress/e2e/identity_providers_test.spec.ts

View workflow job for this annotation

GitHub Actions / Admin UI

Insert `,`
},
{ testName: "Microsoft", displayName: "Microsoft", alias: "microsoft" },
{
testName: "Openshift-v3",
Expand Down Expand Up @@ -177,8 +181,8 @@ describe("Identity provider test", () => {
it("create and delete provider by item details", () => {
createProviderPage
.clickCreateDropdown()
.clickItem("linkedin")
.fill("linkedin", "123")
.clickItem("linkedin-openid-connect")
.fill("linkedin-openid-connect", "123")
.clickAdd();
masthead.checkNotificationMessage(createSuccessMsg, true);

Expand Down

0 comments on commit ba58b51

Please sign in to comment.