From e8a9f69fbb3b6d9964b8487ff2ce8da4e6091e3e Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 28 Nov 2021 14:35:39 +0100 Subject: [PATCH] fix: tests --- cypress/integration/user/login.spec.js | 2 +- cypress/integration/user/registration.spec.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/integration/user/login.spec.js b/cypress/integration/user/login.spec.js index ce6086ce0..238ec77f4 100644 --- a/cypress/integration/user/login.spec.js +++ b/cypress/integration/user/login.spec.js @@ -8,7 +8,7 @@ const testAndAssertFailed = fixture => { cy.wait(5000) // It can take waaaayy too long to log the user in cy.url().should('include', '/') - cy.get('div.notification.is-danger').contains('Wrong username or password.') + cy.get('div.message.danger').contains('Wrong username or password.') } context('Login', () => { diff --git a/cypress/integration/user/registration.spec.js b/cypress/integration/user/registration.spec.js index fc1b0fbde..fd940aa7e 100644 --- a/cypress/integration/user/registration.spec.js +++ b/cypress/integration/user/registration.spec.js @@ -32,7 +32,7 @@ context('Registration', () => { cy.get('h2').should('contain', `Hi ${fixture.username}!`) }) - it('Should fail', () => { + it.only('Should fail', () => { const fixture = { username: 'test', password: '123456', @@ -45,6 +45,6 @@ context('Registration', () => { cy.get('#password').type(fixture.password) cy.get('#passwordValidation').type(fixture.password) cy.get('#register-submit').click() - cy.get('div.notification.is-danger').contains('A user with this username already exists.') + cy.get('div.message.danger').contains('A user with this username already exists.') }) }) \ No newline at end of file