unit test
Vue CLI has built-in options for unit testing with Jest or Mocha out of the box. We also have the official Vue Test Utils to provide more detailed guidance and custom settings.
Table of Contents
Simple Assertions
You don’t have to add in components for testability To do any special operations in, just export the original settings:
<template> <span>{{ message }}</span> </template> <script> export default { data () { return { message: 'hello!' } }, created () { this.message = 'bye!' } } </script>
Then with the option of Vue importing the component, you can use many common assertions (here we are using the Jasmine/Jest style expect
assertions as examples):
// 导入 Vue.js 和组件,进行测试 import Vue from 'vue' import MyComponent from 'path/to/MyComponent.vue' // 这里是一些 Jasmine 2.0 的测试,你也可以使用你喜欢的任何断言库或测试工具。 describe('MyComponent', () => { // 检查原始组件选项 it('has a created hook', () => { expect(typeof MyComponent.created).toBe('function') }) // 评估原始组件选项中的函数的结果 it('sets the correct default data', () => { expect(typeof MyComponent.data).toBe('function') const defaultData = MyComponent.data() expect(defaultData.message).toBe('hello!') }) // 检查 mount 中的组件实例 it('correctly sets the message when created', () => { const vm = new Vue(MyComponent).$mount() expect(vm.message).toBe('bye!') }) // 创建一个实例并检查渲染输出 it('renders the correct message', () => { const Constructor = Vue.extend(MyComponent) const vm = new Constructor().$mount() expect(vm.$el.textContent).toBe('bye!') }) })
Writing components that can be tested
The rendering output of many components is determined by its props. In fact, if a component's rendered output depends entirely on its props, it makes testing as simple as asserting the return value of a pure function with different parameters. Look at the following example:
<template> <p>{{ msg }}</p> </template> <script> export default { props: ['msg'] } </script>
You can assert its rendering output in different props through the propsData
option:
import Vue from 'vue' import MyComponent from './MyComponent.vue' // 挂载元素并返回已渲染的文本的工具函数 function getRenderedText (Component, propsData) { const Constructor = Vue.extend(Component) const vm = new Constructor({ propsData: propsData }).$mount() return vm.$el.textContent } describe('MyComponent', () => { it('renders correctly with different props', () => { expect(getRenderedText(MyComponent, { msg: 'Hello' })).toBe('Hello') expect(getRenderedText(MyComponent, { msg: 'Bye' })).toBe('Bye') }) })
Assertion asynchronous update
Due to the situation where Vue updates the DOM asynchronously, some assertions that rely on the DOM update result Must be performed in the Vue.nextTick callback:
// 在状态更新后检查生成的 HTML it('updates the rendered message when vm.message updates', done => { const vm = new Vue(MyComponent).$mount() vm.message = 'foo' // 在状态改变后和断言 DOM 更新前等待一刻 Vue.nextTick(() => { expect(vm.$el.textContent).toBe('foo') done() }) })For more in-depth Vue unit testing content, please move to
Vue Test Utils and our about Vue component unit testing cookbook article.