From cb38df625d5292887b49fbed808eb48bbac93c7f Mon Sep 17 00:00:00 2001 From: Julia Bardi Date: Tue, 6 Dec 2022 17:35:36 +0100 Subject: [PATCH] fix cypress test --- x-pack/plugins/fleet/cypress/e2e/integrations_real.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/fleet/cypress/e2e/integrations_real.cy.ts b/x-pack/plugins/fleet/cypress/e2e/integrations_real.cy.ts index 2d5a6d70d1da6..cce1269585cbb 100644 --- a/x-pack/plugins/fleet/cypress/e2e/integrations_real.cy.ts +++ b/x-pack/plugins/fleet/cypress/e2e/integrations_real.cy.ts @@ -177,7 +177,7 @@ describe('Add Integration - Real API', () => { cy.getBySel(INTEGRATION_LIST).find('.euiCard').should('have.length.greaterThan', 29); cy.getBySel(INTEGRATIONS_SEARCHBAR.INPUT).clear().type('Cloud'); - cy.getBySel(INTEGRATION_LIST).find('.euiCard').should('have.length', 3); + cy.getBySel(INTEGRATION_LIST).find('.euiCard').should('have.length.greaterThan', 3); cy.getBySel(INTEGRATIONS_SEARCHBAR.REMOVE_BADGE_BUTTON).click(); cy.getBySel(INTEGRATIONS_SEARCHBAR.BADGE).should('not.exist'); });