Cypress - Writing Tests
You wrote this Cypress test:
Why does
describe('Sample', () => {
beforeEach(() => {
cy.visit('/dashboard')
})
afterEach(() => {
cy.clearCookies
})
it('checks title', () => {
cy.title().should('include', 'Dashboard')
})
})Why does
cy.clearCookies not run after the test?