xxxxxxxxxx
This tutorial makes it so simple
https://medium.com/@cybercoder.naj/the-complete-guide-to-testing-with-cypress-7bbdb2ffa5d7
xxxxxxxxxx
import { mount } from '@vue/test-utils'
// The component to test
const MessageComponent = {
template: '<p>{{ msg }}</p>',
props: ['msg']
}
test('displays message', () => {
const wrapper = mount(MessageComponent, {
props: {
msg: 'Hello world'
}
})
// Assert the rendered text of the component
expect(wrapper.text()).toContain('Hello world')
})