Cypress - Component Testing
Given this Cypress component test code, what will be the output in the test runner?
describe('Button component', () => {
beforeEach(() => {
mount()
})
it('checks button text', () => {
cy.get('button').should('have.text', 'Click me')
})
})