Skip tests that are often flaky on CI (#2213)
This commit is contained in:
parent
17b840af6a
commit
127cb343ab
3 changed files with 5 additions and 5 deletions
|
@ -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");
|
||||
|
|
|
@ -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];
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue