Cypress - Writing Tests
Identify the error in this Cypress test code:
describe('Login Tests', () => {
it('checks login button', () => {
cy.get('#login').should('be.visible')
})
it('checks logout button') {
cy.get('#logout').should('be.visible')
}
})