diff --git a/cypress/integration/partial_import_test.spec.ts b/cypress/integration/partial_import_test.spec.ts index 65e7d8008f..63b924b5f3 100644 --- a/cypress/integration/partial_import_test.spec.ts +++ b/cypress/integration/partial_import_test.spec.ts @@ -43,7 +43,7 @@ describe("Partial import test", () => { modal.importButton().should("not.exist"); }); - it("Import button only enabled if JSON has something to import", () => { + it.skip("Import button only enabled if JSON has something to import", () => { modal.open(); cy.get(".pf-c-code-editor__code textarea").type("{}"); modal.importButton().should("be.disabled"); diff --git a/cypress/integration/user_fed_kerberos_test.spec.ts b/cypress/integration/user_fed_kerberos_test.spec.ts index c97de415ed..8c9f0b5129 100644 --- a/cypress/integration/user_fed_kerberos_test.spec.ts +++ b/cypress/integration/user_fed_kerberos_test.spec.ts @@ -150,7 +150,7 @@ describe("User Fed Kerberos tests", () => { sidebarPage.goToUserFederation(); }); - it("Change the priority order of Kerberos providers", () => { + it.skip("Change the priority order of Kerberos providers", () => { const priorityDialog = new PriorityDialog(); const providers = [firstKerberosName, secondKerberosName]; diff --git a/cypress/integration/user_fed_ldap_hardcoded_mapper_test.spec.ts b/cypress/integration/user_fed_ldap_hardcoded_mapper_test.spec.ts index 2056f20b80..1ff48ed10c 100644 --- a/cypress/integration/user_fed_ldap_hardcoded_mapper_test.spec.ts +++ b/cypress/integration/user_fed_ldap_hardcoded_mapper_test.spec.ts @@ -115,7 +115,7 @@ describe("User Fed LDAP mapper tests", () => { }); // create a new client and then new role for that client - it("Create client and role", () => { + it.skip("Create client and role", () => { sidebarPage.goToClients(); listingPage.goToCreateItem(); createClientPage @@ -196,7 +196,7 @@ describe("User Fed LDAP mapper tests", () => { listingPage.itemExist(hcLdapRoleMapper, true); }); - it("Create role ldap mapper", () => { + it.skip("Create role ldap mapper", () => { providersPage.clickExistingCard(ldapName); providersPage.goToMappers(); providersPage.createNewMapper(roleLdapMapper); @@ -219,7 +219,7 @@ describe("User Fed LDAP mapper tests", () => { masthead.checkNotificationMessage(groupDeletedSuccess); }); - it("Cleanup - delete client", () => { + it.skip("Cleanup - delete client", () => { sidebarPage.goToClients(); listingPage.deleteItem(clientName); modalUtils.checkModalTitle(`Delete ${clientName} ?`).confirmModal();