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); }); });