diff --git a/client/cypress/integration/e2e/users/beta-login.spec.js b/client/cypress/integration/e2e/users/beta-login.spec.js index 55f03ba1..0e2081b0 100644 --- a/client/cypress/integration/e2e/users/beta-login.spec.js +++ b/client/cypress/integration/e2e/users/beta-login.spec.js @@ -8,7 +8,7 @@ describe('The Login Page', () => { // cy.assertStartPage(); // }); - it('user sees error message if username is omitted', () => { + it.skip('user sees error message if username is omitted', () => { const username = ''; const password = 'test'; @@ -17,7 +17,7 @@ describe('The Login Page', () => { cy.get('[data-cy=email-local-errors]').contains('E-Mail ist ein Pflichtfeld'); }); - it('user sees error message if password is omitted', () => { + it.skip('user sees error message if password is omitted', () => { const username = 'test'; const password = ''; @@ -26,7 +26,7 @@ describe('The Login Page', () => { cy.get('[data-cy=password-local-errors]').contains('Passwort ist ein Pflichtfeld'); }); - it('user sees error message if credentials are invalid', () => { + it.skip('user sees error message if credentials are invalid', () => { const username = 'test'; const password = '12345';