Cypress - Writing Tests
Identify the issue in this Cypress test code:
describe('Example Suite', () => {
beforeEach(() => {
cy.visit('/')
})
after(() => {
cy.clearCookies
})
it('Sample Test', () => {
cy.get('button').click()
})
})