From 691ba65e9df53228be83312b5f81a94cda97afaa Mon Sep 17 00:00:00 2001 From: mfrances Date: Thu, 10 Jun 2021 11:24:05 -0400 Subject: [PATCH] resolved rebase conflict issue that broke test --- cypress/integration/user_fed_ldap_mapper_test.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress/integration/user_fed_ldap_mapper_test.spec.ts b/cypress/integration/user_fed_ldap_mapper_test.spec.ts index a923640351..7f214a3587 100644 --- a/cypress/integration/user_fed_ldap_mapper_test.spec.ts +++ b/cypress/integration/user_fed_ldap_mapper_test.spec.ts @@ -43,6 +43,7 @@ const providerDeleteSuccess = "The user federation provider has been deleted."; const providerDeleteTitle = "Delete user federation provider?"; const mapperDeletedSuccess = "Mapping successfully deleted"; const mapperDeleteTitle = "Delete mapping?"; +const groupDeleteTitle = "Delete group?"; const groupCreatedSuccess = "Group created"; const groupDeletedSuccess = "Group deleted"; const clientCreatedSuccess = "Client created successfully"; @@ -325,6 +326,7 @@ describe("User Fed LDAP mapper tests", () => { it("Cleanup - delete group", () => { sidebarPage.goToGroups(); listingPage.deleteItem(groupName); + modalUtils.checkModalTitle(groupDeleteTitle).confirmModal(); masthead.checkNotificationMessage(groupDeletedSuccess); });