Cypress - Writing Tests
What is wrong with this Cypress test setup?
describe('Tests', () => {
beforeEach(() => {
cy.get('#login').click()
})
afterEach(() => {
cy.get('#logout').click()
})
it('Test 1', () => {
cy.get('#dashboard').should('be.visible')
})
})