describe('The Logged In Home Page', () => {
it('successfully loads', () => {
cy.login('test', 'test');
cy.visit('/');
cy.get('.block-title__title').should('contain', 'Inhalte')
})