cli3-init
Former-commit-id: c2208822160c869725ca1e2d8090efe8a26ef205 [formerly c2208822160c869725ca1e2d8090efe8a26ef205 [formerly c2208822160c869725ca1e2d8090efe8a26ef205 [formerly c2208822160c869725ca1e2d8090efe8a26ef205 [formerly 9d32806619ec7dfd268d8d1d489788a4b93ef8f2 [formerly a0b8d05dbd65ff11909125a63f47863d9943338b]]]]] Former-commit-id: 5318442d566c59f1669e14f467c8c6308155b2a3 Former-commit-id: 0a29bf225a6b939c13728547e95135d23cd6fbb2 Former-commit-id: 75bc94d9ae5e57f7d78974b65a11c5ec36a7d07d [formerly 8e22212a884eb010c619bf4eac6fa06b52005cf5] Former-commit-id: a00d38cadcd10bae7c00c0a7034dbe6d6b2e2060 Former-commit-id: 4cbc35132e5844bcff3b59c9bfcb505642fecf42 Former-commit-id: c4ab1140d261a2a9193657dc381e5094e007eaa3 Former-commit-id: 56c01e286f6c12116c7075a6a67a19b6d9ad5011 Former-commit-id: 34106a945900d8125f21e803b450b0e9591f0d53
This commit is contained in:
8
tests/unit/.eslintrc.js
Normal file
8
tests/unit/.eslintrc.js
Normal file
@@ -0,0 +1,8 @@
|
||||
module.exports = {
|
||||
env: {
|
||||
jest: true
|
||||
},
|
||||
rules: {
|
||||
'import/no-extraneous-dependencies': 'off'
|
||||
}
|
||||
}
|
||||
12
tests/unit/HelloWorld.spec.js
Normal file
12
tests/unit/HelloWorld.spec.js
Normal file
@@ -0,0 +1,12 @@
|
||||
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)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user