From e64d834404e6a11d25bce7c666dd29fae5324f30 Mon Sep 17 00:00:00 2001 From: Reza Rahemtola Date: Mon, 20 Jun 2022 20:24:45 +0200 Subject: [PATCH] fix: Tests updated with both Computing and Storage features --- cypress/integration/dashboard.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/dashboard.spec.js b/cypress/integration/dashboard.spec.js index f6b24bc9..89a5b28e 100644 --- a/cypress/integration/dashboard.spec.js +++ b/cypress/integration/dashboard.spec.js @@ -30,12 +30,12 @@ describe('Upload a file modal for DashboardView', () => { cy.get('#ipc-dashboardView-upload-file').attachFile(fixtureFile); cy.get('#ipc-dashboardView-upload-file-modal-button').click(); cy.wait(2000); - cy.get('button').should('have.length', 10); + cy.get('button').should('have.length', 12); }); it('Good number of buttons after closing modal', () => { cy.get('#ipc-modal-close-button').click(); - cy.get('button').should('have.length', 10); + cy.get('button').should('have.length', 12); }); });