mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 08:22:24 +09:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
import { shallowMount } from '@vue/test-utils'
|
|
import HelloWorld from '@/components/HelloWorld.vue'
|
|
|
|
describe('HelloWorld.vue', () => {
|
|
it('renders props.msg when passed', () => {
|
|
const msg = 'new message'
|
|
const wrapper = shallowMount(HelloWorld, {
|
|
propsData: { msg }
|
|
})
|
|
expect(wrapper.text()).toMatch(msg)
|
|
})
|
|
})
|