TypeError: Cannot read property 'getters' of undefined
TypeError: Cannot read property 'getters' of undefined
我正在尝试测试引用 Vuex 存储的基本 Vue 组件。我以为我按照 Vue 的示例 (https://vue-test-utils.vuejs.org/guides/using-with-vuex.html#mocking-getters) 做了一个 T,但它似乎没有用。
我收到标题中提到的错误。
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)
})
})
我正在使用 class 个组件,所以这可能与它有关?
@Component({
props: {
title: String
},
computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {}
提前致谢。
这里的"getters"分配不正确:
beforeEach(() => {
getters: {
isLoggedIn: () => false
}
store = new Vuex.Store({
getters
})
})
它应该是 getters = {...
而不是 getters: {...
因为你对 beforeEach 的参数是一个函数而不是一个对象。
我可以确认它确实正确地写在文档中。
祝你好运!
想通了。
当您在组件中声明 getter 时,请确保定义将要使用的变量。
@Component({
props: {
title: String
},
computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {
isLoggedIn!: boolean <== I did not have this before.
...
}
编辑:此外,我实际上并没有在测试中使用模拟 getter,因此您甚至不需要模拟商店。您需要做的就是在组件上声明该变量。
对我来说,当我试图加载两个导入相同模块的不同商店实例时出现此错误消息。默认情况下,Vuex 假设一个单一的商店。发生了一些奇怪的事情,结果就是这个错误。
我正在尝试测试引用 Vuex 存储的基本 Vue 组件。我以为我按照 Vue 的示例 (https://vue-test-utils.vuejs.org/guides/using-with-vuex.html#mocking-getters) 做了一个 T,但它似乎没有用。
我收到标题中提到的错误。
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)
})
})
我正在使用 class 个组件,所以这可能与它有关?
@Component({
props: {
title: String
},
computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {}
提前致谢。
这里的"getters"分配不正确:
beforeEach(() => {
getters: {
isLoggedIn: () => false
}
store = new Vuex.Store({
getters
})
})
它应该是 getters = {...
而不是 getters: {...
因为你对 beforeEach 的参数是一个函数而不是一个对象。
我可以确认它确实正确地写在文档中。
祝你好运!
想通了。
当您在组件中声明 getter 时,请确保定义将要使用的变量。
@Component({
props: {
title: String
},
computed: mapGetters(['isLoggedIn'])
})
export default class Navbar extends mixins(Utils) {
isLoggedIn!: boolean <== I did not have this before.
...
}
编辑:此外,我实际上并没有在测试中使用模拟 getter,因此您甚至不需要模拟商店。您需要做的就是在组件上声明该变量。
对我来说,当我试图加载两个导入相同模块的不同商店实例时出现此错误消息。默认情况下,Vuex 假设一个单一的商店。发生了一些奇怪的事情,结果就是这个错误。