我正在对组件进行一些单元测试。但是,在某些组件中,我在mounted挂钩上运行了某些操作,这使我的测试失败了。
我设法模拟了不需要的方法。但是,我想知道是否存在一种模拟mounted挂钩本身的解决方法。

@ / components / attendeesList.vue

<template>
  <div>
    <span> This is a test </span>
  </div>
</template>

JS
<script>
methods: {
    testMethod: function() {
        // Whatever is in here I have managed to mock it
    }
},

mounted: {
    this.testMethod();
}
</script>

Test.spec.js
import { mount, shallowMount } from '@vue/test-utils'
import test from '@/components/attendeesList.vue'

describe('mocks a method', () => {
  test('is a Vue instance', () => {
  const wrapper = shallowMount(attendeesList, {
    testMethod:jest.fn(),
  })
  expect(wrapper.isVueInstance()).toBeTruthy()
})

最佳答案

当前,vue-test-utils不支持模拟生命周期挂钩,但是您可以从mounted挂钩中调用mock the method。在您的情况下,要模拟testMethod(),请使用 jest.spyOn :

const testMethod = jest.spyOn(HelloWorld.methods, 'testMethod')
const wrapper = shallowMount(HelloWorld)
expect(testMethod).toHaveBeenCalledWith("hello")

07-26 06:41