Cypress - Element Interactions
Given the following code snippet, what will be the assertion result?
cy.get('input[type="checkbox"]').check().should('be.checked');
cy.get('input[type="checkbox"]').uncheck().should('not.be.checked');