Cypress - Component Testing
What will be the result of running this Cypress component test?
import UserCard from './UserCard'
describe('UserCard component', () => {
it('displays user name', () => {
cy.mount( )
cy.get('.user-name').should('contain.text', 'Alice')
})
})