2021-08-06 09:15:43 +02:00

7 lines
168 B
JavaScript

describe('Profile', () => {
it('profile', () => {
cy.login()
cy.visit('/profile')
cy.get('h1').should('contain', 'test@test.de')
})
})