diff --git a/cypress/integration/dashboards.spec.js b/cypress/integration/dashboards.spec.js index 9345be58b..e9cf985a9 100644 --- a/cypress/integration/dashboards.spec.js +++ b/cypress/integration/dashboards.spec.js @@ -3,7 +3,7 @@ */ context('Dashboards', () => { - context('main dashboards page shows message', () => { + context('main dashboards page', () => { beforeEach(() => { cy.server(); cy.route( @@ -14,10 +14,6 @@ context('Dashboards', () => { cy.login('/dashboards'); }); - it('shows the welcome message', () => { - cy.get('[data-test=dashboards]').contains('Dashboards'); - }); - it('shows the list of dashboards', () => { cy.get('[data-test=dashboard-item]').should('have.length', 2); }); @@ -166,15 +162,4 @@ context('Dashboards', () => { ); }); }); - - context('main dashboards page shows message', () => { - beforeEach(() => { - cy.server(); - cy.login('/dashboards'); - }); - - it('shows the welcome message', () => { - cy.get('[data-test=dashboards]').contains('Welcome to dashboards!'); - }); - }); });