fix: tests
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2023-09-03 16:30:36 +02:00
parent ce6f099912
commit f6d1db3595
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ context('Registration', () => {
it('Should work without issues', () => { it('Should work without issues', () => {
const fixture = { const fixture = {
username: 'testuser', username: 'testuser',
password: '123456', password: '12345678',
email: 'testuser@example.com', email: 'testuser@example.com',
} }
@ -31,10 +31,10 @@ context('Registration', () => {
cy.get('h2').should('contain', `Hi ${fixture.username}!`) cy.get('h2').should('contain', `Hi ${fixture.username}!`)
}) })
it.only('Should fail', () => { it('Should fail', () => {
const fixture = { const fixture = {
username: 'test', username: 'test',
password: '123456', password: '12345678',
email: 'testuser@example.com', email: 'testuser@example.com',
} }