作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试测试一个引用 Vuex 存储的基本 Vue 组件。我以为我遵循了 Vue 的示例( https://vue-test-utils.vuejs.org/guides/using-with-vuex.html#mocking-getters ),但它似乎不起作用。
我收到标题中提到的错误。
const localVue = createLocalVue()
localVue.use(Vuex)
describe('Navbar.vue', () => {
let store: any
let getters: any
beforeEach(() => {
getters: {
isLoggedIn: () => false
}
store = new Vuex.Store({
getters
})
})
it('renders props.title when passed', () => {
const title = 'Smart Filing'
const wrapper = shallowMount(Navbar, {
propsData: { title },
i18n,
store,
localVue,
stubs: ['router-link']
})
expect(wrapper.text()).to.include(title)
})
})
我正在使用类组件,所以也许这与它有关?
@Component({
props: {
title: String
},
computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {}
提前致谢。
最佳答案
想通了。
当您在组件中声明 getter 时,请确保定义将要使用的变量。
@Component({
props: {
title: String
},
computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {
isLoggedIn!: boolean <== I did not have this before.
...
}
编辑:此外,我实际上并没有在测试中使用模拟 getter,因此您甚至不需要模拟商店。您需要做的就是在组件上声明该变量。
关于vue.js - 类型错误 : Cannot read property 'getters' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54526637/
我是一名优秀的程序员,十分优秀!