我正在尝试为 Vue 的mounted()
生命周期挂钩中的逻辑编写一个单元测试,但运气不佳。问题似乎mounted()
是在使用 vue-test-utils 安装组件时永远不会被调用mount
。这是我要测试的 Vue 组件:
<template>
<div></div>
</template>
<script>
export default {
name: 'MyComponent',
mounted () {
this.$store.dispatch('logout')
}
}
</script>
和测试本身:
import { mount, createLocalVue } from '@vue/test-utils'
import Vuex from 'vuex'
import MyComponent from '@/components/MyComponent'
const localVue = createLocalVue()
localVue.use(Vuex)
describe('MyComponent.vue', () => {
let store
let actions
beforeEach(() => {
actions = {
logout: jest.fn().mockName('logout')
}
store = new Vuex.Store({
state: {},
actions
})
})
it('calls store "logout" action', () => {
mount(MyComponent, { localVue, store })
expect(actions.logout).toHaveBeenCalled()
})
})
expect(logout).toHaveBeenCalled()
但是,这会因断言为假而失败。
如果我通过测试通过直接调用模拟存储操作actions.logout()
,并且我还有其他测试也调用存储操作,例如按下按钮,并且这些操作也通过了,所以问题肯定出现在 mount() 生命周期钩子上.
有什么想法吗?
(vue2.5.4
和 vue-test-utils 1.0.0-beta-.15
)