Cypress Quiz

Correct: 0
Incorrect: 0
Remaining: 14
💡 What will be the output of the following test?
beforeEach(() => cy.log(1));
before(() => cy.log(2));

it('should print', () => {
 cy.log(3);
});

after(() => cy.log(4));
afterEach(() => cy.log(5));
A | 1, 2, 3, 4, 5
B | 1, 2, 3, 5, 4
C | 2, 1, 3, 5, 4
D | 2, 1, 3, 4, 5