Cypress - Test Organization and Patterns
Identify the error in this Cypress test code snippet:
describe('Suite', () => {
beforeEach(() => {
cy.visit('/page')
})
it('Test', () => {
cy.get('.btn').click()
})
afterEach(() => {
cy.clearCookies
})
})