Skip tests that are often flaky on CI (#2213)

This commit is contained in:
Jon Koops 2022-03-07 13:36:43 +01:00 committed by GitHub
parent 17b840af6a
commit 127cb343ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -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");

View file

@ -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];

View file

@ -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();