diff --git a/cypress/integration/location.spec.js b/cypress/integration/location.spec.js index 24289729..3b02375b 100644 --- a/cypress/integration/location.spec.js +++ b/cypress/integration/location.spec.js @@ -1,13 +1,7 @@ -const { location } = require('../../src/i18n/resources/de/translation.json'); - describe('Location', () => { beforeEach(() => { cy.visit(''); cy.get('[data-cypress=welcomeModalGo]').click(); cy.get('.ui.menu > :nth-child(1)').click(); }); - - it('shows message "under construction"', () => { - cy.get('.ui.big.message').contains(location.underConstruction); - }); }); diff --git a/cypress/integration/projection.spec.js b/cypress/integration/projection.spec.js index 555b3d3a..dcdb9565 100644 --- a/cypress/integration/projection.spec.js +++ b/cypress/integration/projection.spec.js @@ -2,6 +2,7 @@ describe('Projection mode', () => { beforeEach(() => { cy.visit(''); cy.get('[data-cypress=welcomeModalGo]').click(); + cy.get('.ui.menu > :nth-child(2)').click(); }); it('finds toggle buttons for projection mode', () => { @@ -29,6 +30,7 @@ describe('Projection in form mode', () => { beforeEach(() => { cy.visit(''); cy.get('[data-cypress=welcomeModalGo]').click(); + cy.get('.ui.menu > :nth-child(2)').click(); cy.get('[data-cypress=projectionModeFormButton]').click(); });