初始化项目 🎉

This commit is contained in:
Hunlongyu
2020-10-10 17:50:23 +08:00
parent 780de8d426
commit 51cf9143ad
17 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { expect } from 'chai'
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, {
props: { msg }
})
expect(wrapper.text()).to.include(msg)
})
})