- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Composition API 和 setup()
Hook 运行 vue3 应用程序。
我使用 Vitest 作为单元测试框架。 (v 0.6.1)
我有以下示例组件:
// src/components/MyComponent.vue
<template>
<div>
<h1>counter : {{ counter }}</h1>
<button
@click="incrementCounter"
>
Click
</button>
</div>
</template>
<script setup lang="ts">
// imports
import { ref } from 'vue'
// datas
const counter = ref(1)
// methods
const incrementCounter = () => {
if (confirm()) { // call the confirm method
counter.value++ // increment counter by 1
}
}
const confirm = () => {
return true
}
</script>
及其测试文件:
// src/components/MyComponent.spec.ts
import {
shallowMount
} from '@vue/test-utils'
import MyComponent from '@/components/MyComponent.vue'
describe('component/MyComponent.vue', () => {
it('incrementCounter method', () => {
const wrapper = shallowMount(MyComponent) // create the wrapper
const confirmSpy = vi.spyOn(wrapper.vm, 'confirm') // create the confirm method spy
wrapper.vm.incrementCounter() // use the incrementCounter method
expect(wrapper.vm.counter).toBe(2) // test passed
expect(confirmSpy).toHaveBeenCalled() // test failed
})
})
测试的目的只是验证confirm()
方法是否在incrementCounter()
方法中被调用。
我尝试使用 vitest tohavebeencalled()方法与 confirm()
方法的 spy ,但测试以失败告终,并显示以下消息:
Re-running tests... [ src/components/MyComponent.spec.ts ]
× src/components/MyComponent.spec.ts > component/MyComponent.vue >incrementCounter method → expected "confirm" to be called at leastonce
⎯⎯⎯⎯⎯⎯⎯ Failed Tests 1 ⎯⎯⎯⎯⎯⎯⎯
FAIL src/components/MyComponent.spec.ts > component/MyComponent.vue
incrementCounter method AssertionError: expected "confirm" to be called at least once ❯ src/components/MyComponent.spec.ts:13:2311| wrapper.vm.incrementCounter() // use the incrementCounter method12| expect(wrapper.vm.counter).toBe(2) // test passed13| expect(confirmSpy).toHaveBeenCalled() // test failed| ^14| })15| })
这似乎表明confirm()
方法没有被调用,但由于计数器值已经增加到2,我想这意味着该方法实际上已经被有效调用了。
我使用的 spyOn()
方法错了吗?我应该怎么做才能通过这个测试?
预先感谢您的帮助。
最佳答案
在这种情况下,对 confirm
的引用在 incrementCounter()
不能从外部修改。这就像修改函数的私有(private)变量一样不可能。
这是一个类似的 vanilla JavaScript 示例,演示了 <script setup>
中的代码正在尝试(运行下面的代码片段进行演示):
function setup() {
const incrementCounter = () => {
confirm()
}
const confirm = () => {
console.log('confirm')
}
return {
incrementCounter,
confirm,
}
}
const comp = setup()
comp.incrementCounter()
console.log('trying to update confirm...')
comp.confirm = () => console.log('Yes do it!')
comp.incrementCounter() // ❌ still calls original confirm
但是,对象的属性可以从外部修改。因此,解决方法是更新 incrementCounter()
引用confirm
通过对象,稍后我们将对其进行更新:
function setup() {
const incrementCounter = () => {
/*👇*/
ctx.confirm()
}
const confirm = () => {
console.log('confirm')
}
/*👇*/
const ctx = {
incrementCounter,
confirm,
} /*👇*/
return ctx
}
const comp = setup()
comp.incrementCounter()
console.log('trying to update confirm...')
comp.confirm = () => console.log('Yes do it!')
comp.incrementCounter() // ✅ calls new confirm above
使用相同的技术,incrementCounter()
可以引用confirm
通过 <script setup>
中的对象:
<!-- MyComponent.vue -->
<script setup>
import { ref } from 'vue'
const counter = ref(1)
const incrementCounter = () => {
/*👇*/
if (ctx.confirm()) {
// call the confirm method
counter.value++ // increment counter by 1
}
}
const confirm = () => {
return true
}
/*👇*/
const ctx = {
confirm
}
</script>
现在,您可以使用 spyOn
在 ctx.confirm
:
// MyComponent.spec.js
import { describe, it, expect, vi } from 'vitest'
import { shallowMount } from '@vue/test-utils'
import MyComponent from '@/components/MyComponent.vue'
describe('component/MyComponent.vue', () => {
it('incrementCounter method', () => {
const wrapper = shallowMount(MyComponent)
/*👇*/
const confirmSpy = vi.spyOn(wrapper.vm.ctx, 'confirm')
wrapper.vm.incrementCounter()
expect(wrapper.vm.counter).toBe(2)
expect(confirmSpy).toHaveBeenCalled() /*✅*/
})
})
关于javascript - Vue3-使用 Vitest toHaveBeenCalled() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72084274/
我有一个函数,它只是创建一个写入流并写入它...我想测试该函数,并测试 createWriteStream 的 write() 函数> 被调用。但是,我正在 mock fs 模块,因为我不想在测试时实
据我所知, Jasmine 的 .toHaveBeenCalled() Matcher 返回一个 Promise,该 Promise 在函数被调用时被解析。实际上对我来说,它返回未定义: it('sh
什么时候应该调用这些方法中的每一个,为什么? const spyStart = spyOn(el, 'func1'); expect(spyStart).toHaveBeenCalled(); con
我正在使用 Composition API 和 setup() Hook 运行 vue3 应用程序。 我使用 Vitest 作为单元测试框架。 (v 0.6.1) 我有以下示例组件: // src/c
我在进行这个简单的测试时遇到了很多麻烦。 我在想要测试的 Controller 中有一个 $scope.$on 监听器。我只是想确保它在广播事件之后被调用。 为此,我认为以下代码可以工作: descr
我正在使用 Composition API 和 setup() Hook 运行 vue3 应用程序。 我使用 Vitest 作为单元测试框架。 (v 0.6.1) 我有以下示例组件: // src/c
谁能告诉我为什么以下测试失败。 var Person = function() {}; Person.prototype.helloSomeone = function(toGreet) { re
我正在使用 Enzyme/Jest 为容器帽子上的函数编写测试,该函数是通过复选框组件的 onChange 触发的。我正在尝试模拟“更改”,但是,“更改”以某种方式没有触发调用 onChange 函数
这是测试代码 var list = new List([1, 2, 3, 4]); var list2 = new List([5, 1]); beforeAll(function () { sp
我在 React 中有一个小组件,它在渲染时生成两个随机数,然后要求用户提交这些数字的总和,如果它们正确,则增加他们的分数。 以下代码处理此游戏并在浏览器中按预期运行: import React, {
我是 jasmine 的新手,这是我的 src 文件,我在其中创建了 Auth 类 function Auth() { } Auth.prototype.isEmpty = function(str)
使用 Jest 和 React,我如何监视一个 this.setState()并测试功能 hasBeenCalled() it('shall update targets when engine re
我正在尝试测试是否使用 enzyme 和 jest 调用了 React 组件方法。该函数应该在 时被调用。元素变得没有焦点(模糊)。该组件连接到 Redux 存储,但它也按名称导出,以将 Redux
被测代码: module lib { export class Topic { private _callbacks: JQueryCallback; publ
我目前在监视 typescript 类中调用的继承方法时遇到问题,其中 toHaveBeenCalled() 方法返回 false,即使被监视的方法已被调用。看看下面的场景... 我有两个类,用 Ty
我正在尝试对返回 promise 的函数进行单元测试。我在验证是否模拟函数被调用。这是我所做的。, // codetotest.js const { SomeModule, isSomething,
我的监视方法的示例失败,并显示“预期 spy handle_click已被调用”。当它应该过去的时候。但是,我收到控制台日志“Foo handle_click called!”,所以我知道它正在被调用
一个简单的组件: {{ count }} Increment export default { data () { r
我正在尝试 stub /监视翻译,而不仅仅是 mock 它,即使在这种最基本的情况下,我似乎也无法触发它。 /** * ComponentName.jsx */ import { useTrans
我是一名优秀的程序员,十分优秀!