【发布时间】:2021-11-19 22:12:29
【问题描述】:
我的 Vue 组件:
data() {
return {
test: false,
}
},
methods: {
setTestToTrue() {
this.test = true
},
我的 JestJs 测试
有什么办法可以消除这些警告吗?
【问题讨论】:
标签: vue.js intellij-idea jestjs
我的 Vue 组件:
data() {
return {
test: false,
}
},
methods: {
setTestToTrue() {
this.test = true
},
我的 JestJs 测试
有什么办法可以消除这些警告吗?
【问题讨论】:
标签: vue.js intellij-idea jestjs
这需要添加对wrapper.vm 的特殊支持,因为方法是在运行时动态添加的,因此无法静态解析
请投票给WEB-51228 以获知任何进展
【讨论】: