我有一个带有按钮的Vue组件。我想验证单击按钮时在组件上调用的方法。我正在使用Jest进行单元测试。我期望.trigger
中的vue-test-utils
方法会在按钮上创建一个合成事件,但是它什么也没做。
我尝试直接通过调用wrapper.vm.addService()
然后使用console.log(wrapper.emitted())
在包装器上调用该方法,确实可以看到事件已触发。所以我的问题是,为什么addServiceBtn.trigger('click')
不做任何事情。
console.log(wrapper.emitted())
是一个空对象。测试结果失败,并显示错误消息:Expected spy to have been called, but it was not called.
ServiceItem.vue
<template>
<v-flex xs2>
<v-card>
<v-card-text id="itemTitle">{{ item.title }}</v-card-text>
<v-card-actions>
<v-btn flat color="green" id="addServiceBtn" @click="this.addService">Add</v-btn>
</v-card-actions>
</v-card>
</v-flex>
</template>
<script>
export default {
data: () => ({
title: ''
}),
props: {
item: Object
},
methods: {
addService: function (event) {
console.log('service item')
this.$emit('add-service')
}
}
}
</script>
tests.spec.js
import { shallowMount, mount } from '@vue/test-utils'
import ServiceItem from '@/components/ServiceItem.vue'
import Vue from 'vue';
import Vuetify from 'vuetify';
Vue.use(Vuetify);
describe('ServiceItem.vue', () => {
it('emits add-service when Add button is clicked', () => {
const item = {
title: 'Service'
}
const wrapper = mount(ServiceItem, {
propsData: { item }
})
expect(wrapper.find('#addServiceBtn').exists()).toBe(true)
const addServiceBtn = wrapper.find('#addServiceBtn')
const spy = spyOn(wrapper.vm, 'addService')
console.log(wrapper.emitted())
addServiceBtn.trigger('click')
expect(wrapper.vm.addService).toBeCalled()
})
})
答案 0 :(得分:2)
您的HTML代码中有一个小错误。您将@click
事件绑定到没有任何this
的方法。做到:
<v-btn flat color="green" id="addServiceBtn" @click="addService($event)">Add</v-btn>
答案 1 :(得分:1)
对我来说,它没有用,但是在使用 vue-test-utils 进行测试时未能触发事件,直到我添加了 .native
<v-btn @click.native="addToCart($event)">
Add
</v-btn>
答案 2 :(得分:0)
它不起作用的原因是,建议您删除this.addService
中的<template>
并仅说this
或@click="addService($event)"
可以正常工作,但没有传入任何事件
答案 3 :(得分:0)
实际上,原始代码中的测试不起作用还有另一个原因:这是函数调用中的括号。
我发现语法@click="addService"
会导致测试失败,而非常相似(且在某种程度上不建议使用的语法)@click="addService()"
将会成功。
示例:
test('Click calls the right function', () => {
// wrapper is declared before this test and initialized inside the beforeEach
wrapper.vm.testFunction = jest.fn();
const $btnDiscard = wrapper.find('.btn-discard');
$btnDiscard.trigger('click');
expect(wrapper.vm.testFunction).toHaveBeenCalled();
});
此测试使用以下语法失败:
<button class="btn blue-empty-btn btn-discard" @click="testFunction">
{{ sysDizVal('remove') }}
</button>
但使用以下语法:
<button class="btn blue-empty-btn btn-discard" @click="testFunction()">
{{ sysDizVal('remove') }}
</button>