Terarea  2
The automation project
Loading...
Searching...
No Matches
example.spec.ts
Go to the documentation of this file.
1import { shallowMount } from '@vue/test-utils'
2import HelloWorld from '@/components/HelloWorld.vue'
3
4describe('HelloWorld.vue', () => {
5 it('renders props.msg when passed', () => {
6 const msg = 'new message'
7 const wrapper = shallowMount(HelloWorld, {
8 props: { msg }
9 })
10 expect(wrapper.text()).toMatch(msg)
11 })
12})