我有一个复选框组件,由于Safari的错误,我更改了
@input=input() to @change='input'
因为Safari没有输入事件。
复选框
<template>
<div
class="checkbox">
<input
....
@change="input">
</div>
</template>
<script>
export default {
....
methods: {
input () {
/**
* Input event on change
*
* @event input
* @type {Boolean}
*/
this.$emit('input', this.$refs.checkbox.checked)
}
}
}
</script>
单元测试
describe('...', () => {
beforeEach(async () => {
const input = wrapper.find('input')
jest.spyOn(wrapper.vm, 'input')
input.trigger('change') // told this is incorrect
jest.runAllTimers()
})
it('[positive] should emit an input event with the input\'s value', () => {
expect(wrapper.emitted().input).toBeTruthy()
expect(wrapper.emitted().input).toHaveLength(1)
expect(wrapper.emitted().input[0]).toEqual([false])
})
it('[positive] should call the input() method with the target value', () => {
// this is wrong also, because the expectation will always be true
wrapper.vm.input()
expect(wrapper.vm.input).toHaveBeenCalled()
})
})
我应该如何正确设置第二项测试?为什么在单元测试中input.trigger('change')是错误的?
守着一只汪
相关分类