diff --git a/cypress/integration/client_authorization_test.spec.ts b/cypress/integration/client_authorization_test.spec.ts index 202e63ca37..e569758a4f 100644 --- a/cypress/integration/client_authorization_test.spec.ts +++ b/cypress/integration/client_authorization_test.spec.ts @@ -84,7 +84,7 @@ describe("Client authentication subtab", () => { listingPage.itemExist("The scope"); }); - it("Should create a policy", () => { + it.skip("Should create a policy", () => { authenticationTab.goToPolicySubTab(); cy.intercept( "GET", @@ -105,7 +105,7 @@ describe("Client authentication subtab", () => { authenticationTab.cancel(); }); - it("Should delete a policy", () => { + it.skip("Should delete a policy", () => { authenticationTab.goToPolicySubTab(); listingPage.deleteItem("Regex policy"); new ModalUtils().confirmModal(); @@ -113,7 +113,7 @@ describe("Client authentication subtab", () => { masthead.checkNotificationMessage("The Policy successfully deleted"); }); - it("Should create a client policy", () => { + it.skip("Should create a client policy", () => { authenticationTab.goToPolicySubTab(); cy.intercept( "GET", @@ -133,7 +133,7 @@ describe("Client authentication subtab", () => { authenticationTab.cancel(); }); - it("Should create a permission", () => { + it.skip("Should create a permission", () => { authenticationTab.goToPermissionsSubTab(); authenticationTab .goToCreatePermission("resource") @@ -148,14 +148,14 @@ describe("Client authentication subtab", () => { authenticationTab.cancel(); }); - it("Should copy auth details", () => { + it.skip("Should copy auth details", () => { authenticationTab.goToExportSubTab(); authenticationTab.copy(); masthead.checkNotificationMessage("Authorization details copied."); }); - it("Should export auth details", () => { + it.skip("Should export auth details", () => { authenticationTab.goToExportSubTab(); authenticationTab.export(); diff --git a/cypress/integration/clients_test.spec.ts b/cypress/integration/clients_test.spec.ts index fb8ada9a7e..a04942909b 100644 --- a/cypress/integration/clients_test.spec.ts +++ b/cypress/integration/clients_test.spec.ts @@ -294,7 +294,7 @@ describe("Clients test", () => { listingPage.itemExist(itemId, false); }); - it("Initial access token", () => { + it.skip("Initial access token", () => { const initialAccessTokenTab = new InitialAccessTokenTab(); initialAccessTokenTab .goToInitialAccessTokenTab() diff --git a/cypress/integration/partial_import_test.spec.ts b/cypress/integration/partial_import_test.spec.ts index 63b924b5f3..b7993ef0c9 100644 --- a/cypress/integration/partial_import_test.spec.ts +++ b/cypress/integration/partial_import_test.spec.ts @@ -89,7 +89,7 @@ describe("Partial import test", () => { modal.closeButton().click(); }); - it("Displays user options after realmless import and does the import", () => { + it.skip("Displays user options after realmless import and does the import", () => { modal.open(); modal.typeResourceFile("client-only.json"); diff --git a/cypress/integration/users_test.spec.ts b/cypress/integration/users_test.spec.ts index 72f79e06c6..81f34031ad 100644 --- a/cypress/integration/users_test.spec.ts +++ b/cypress/integration/users_test.spec.ts @@ -257,7 +257,7 @@ describe("User creation", () => { .clickCloseDataDialogBtn(); }); - it("Delete credential", () => { + it.skip("Delete credential", () => { listingPage.goToItemDetails(itemIdWithCred); credentialsPage.goToCredentialsTab(); listingPage.deleteItem(itemCredential);