IntelliJ 中未解决的 Jest + Vue vm 属性和方法

Jest + Vue vm properties and methods unresolved in IntelliJ

我的 Vue 组件:

 data() { 
    return {
      test: false,
    }
 },
 methods: {
    setTestToTrue() {
       this.test = true
 },

我的 JestJs 测试

有什么方法可以消除警告吗?

这需要为 wrapper.vm 添加特殊支持,因为这些方法是在运行时动态添加的,因此无法静态解析

请投票给WEB-51228,以便在任何进展时得到通知