Cypress - Writing Tests
Consider this Cypress test code:
What is the order of test execution?
describe('Suite 1', () => {
it('Test A', () => { cy.log('A') })
})
describe('Suite 2', () => {
it('Test B', () => { cy.log('B') })
})What is the order of test execution?
