Cypress - Component Testing
What will be the result of this Cypress component test code?
cy.mount(<Button label='Click' />);
cy.get('button').should('contain.text', 'Click');
