Cypress - Writing Tests
Consider this test code:
What is the purpose of the
it('validates form', () => { cy.get('input').each(($el) => { cy.wrap($el).should('be.visible') }) })What is the purpose of the
it block here?