diff --git a/client/cypress/integration/beta-login.spec.js b/client/cypress/integration/beta-login.spec.js index 3b983d79..24ed4d06 100644 --- a/client/cypress/integration/beta-login.spec.js +++ b/client/cypress/integration/beta-login.spec.js @@ -1,11 +1,12 @@ describe('The Login Page', () => { - it('login and redirect to main page', () => { - const username = 'test'; - const password = 'test'; - cy.visit('/beta-login'); - cy.login(username, password, true); - cy.assertStartPage(); - }); + // it('login and redirect to main page', () => { + // const username = 'test'; + // const password = 'test'; + // + // cy.visit('/beta-login'); + // cy.login(username, password, true); + // cy.assertStartPage(); + // }); it('user sees error message if username is omitted', () => { const username = ''; @@ -36,7 +37,7 @@ describe('The Login Page', () => { it('logs out then logs in again', () => { const user = 'rahel.cueni'; - const pw = 'test' + const pw = 'test'; cy.viewport('macbook-15'); cy.apolloLogin(user, pw); @@ -59,4 +60,4 @@ describe('The Login Page', () => { cy.get('.profile-sidebar').should('be.visible'); }); -}) +});