vue 单元测试使用Mocha+chai断言验证页面的组件报错?
// 页面树
<div class="hello">
<son></son>
</div>
// 引入HellWorld页面
import HelloWorld from '@/components/HelloWorld.vue'3
// 使用vue-test-utils
import { mount, createLocalVue } from 'vue-test-utils'
// 引入 son组件
Vue.component('Son', require('@/components/son.vue'))
// .son为son组件内的一个div
console.log(wrapper.find('.son').text())
> 为什么会报这个错
> [vue-test-utils]: find did not return .son, cannot calltext() on empty Wrapper
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wrapper = mount(component); wrapper.find('.son')