From afcfb82b29af4cbc7fa6911d6f18ede7381388fa Mon Sep 17 00:00:00 2001 From: Eylon Malin Date: Sun, 8 Dec 2019 16:42:52 +0200 Subject: another try to fix cypress test should enable correct menu items Issue-ID: VID-724 remove another row form test setup Change-Id: I9846078e7e5d1ed88b6329a026ee542f69aa53fe Signed-off-by: Eylon Malin --- .../cypress/integration/iFrames/instantiationStatus.e2e.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts') diff --git a/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts b/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts index 9a0c1aa36..7e1311b48 100644 --- a/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts +++ b/vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts @@ -61,13 +61,13 @@ describe('Instantiation status', function () { it('should filter rows by filter text', function () { cy.openIframe('app/ui/#/instantiationStatus'); cy.getElementByDataTestsId("instantiationStatusFilter").type("ComplexService"); - cy.get('table#instantiation-status tbody tr').should('have.length', 3); + cy.get('table#instantiation-status tbody tr').should('have.length', 2); }); it('should filter rows by url filter text', function () { cy.openIframe('app/ui/#/instantiationStatus?filterText=ComplexService'); cy.getElementByDataTestsId("instantiationStatusFilter").should('have.value','ComplexService'); - cy.get('table#instantiation-status tbody tr').should('have.length', 3); + cy.get('table#instantiation-status tbody tr').should('have.length', 2); }); function getDropDownMenuByDataTestId(testId:String) { -- cgit 1.2.3-korg