From f6d1db35957c4c2fda7a58539a0a39db1b683ccb Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 3 Sep 2023 16:30:36 +0200 Subject: [PATCH] fix: tests --- cypress/e2e/user/registration.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/e2e/user/registration.spec.ts b/cypress/e2e/user/registration.spec.ts index 16e959d7b..5a877ee72 100644 --- a/cypress/e2e/user/registration.spec.ts +++ b/cypress/e2e/user/registration.spec.ts @@ -17,7 +17,7 @@ context('Registration', () => { it('Should work without issues', () => { const fixture = { username: 'testuser', - password: '123456', + password: '12345678', email: 'testuser@example.com', } @@ -31,10 +31,10 @@ context('Registration', () => { cy.get('h2').should('contain', `Hi ${fixture.username}!`) }) - it.only('Should fail', () => { + it('Should fail', () => { const fixture = { username: 'test', - password: '123456', + password: '12345678', email: 'testuser@example.com', }