Cypress - Writing Tests
What is wrong with this Cypress test code?
describe('Suite', () => {
afterEach(() => {
cy.log('Cleaning up')
})
after(() => {
cy.log('Done')
})
before(() => {
cy.log('Start')
})
it('Test 1', () => {
cy.log('Running')
})
})