Disable more tests that can occasionaly be flaky (#2214)
This commit is contained in:
parent
1104f9ee20
commit
e7e882c36b
4 changed files with 9 additions and 9 deletions
|
@ -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();
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -257,7 +257,7 @@ describe("User creation", () => {
|
|||
.clickCloseDataDialogBtn();
|
||||
});
|
||||
|
||||
it("Delete credential", () => {
|
||||
it.skip("Delete credential", () => {
|
||||
listingPage.goToItemDetails(itemIdWithCred);
|
||||
credentialsPage.goToCredentialsTab();
|
||||
listingPage.deleteItem(itemCredential);
|
||||
|
|
Loading…
Reference in a new issue