admin管理员组文章数量:1344238
I have a simple webapp created to practice my testing skills in vue using Vue Test Utils and Jest but e up with an error regarding with Vue. I'm just console logging to see if my AddDialog is in my Home file but have an error: This is my error:
TypeError: Cannot read property '_modulesNamespaceMap' of undefined
Here is my testing code.
// Imports
import Home from '@/ponents/Home'
// Utilities
import {createLocalVue, mount, } from '@vue/test-utils'
import Vue from 'vue'
import Vuetify from 'vuetify'
import AddDialog from "@/ponents/AddDialog";
Vue.use(Vuetify)
describe('Home.vue', () => {
const localVue = createLocalVue()
let vuetify
beforeEach(() => {
vuetify = new Vuetify()
})
test('creates a todo', async () => {
const wrapper = mount(Home)
console.log(wrapper)
})
})
I have a simple webapp created to practice my testing skills in vue using Vue Test Utils and Jest but e up with an error regarding with Vue. I'm just console logging to see if my AddDialog is in my Home file but have an error: This is my error:
TypeError: Cannot read property '_modulesNamespaceMap' of undefined
Here is my testing code.
// Imports
import Home from '@/ponents/Home'
// Utilities
import {createLocalVue, mount, } from '@vue/test-utils'
import Vue from 'vue'
import Vuetify from 'vuetify'
import AddDialog from "@/ponents/AddDialog";
Vue.use(Vuetify)
describe('Home.vue', () => {
const localVue = createLocalVue()
let vuetify
beforeEach(() => {
vuetify = new Vuetify()
})
test('creates a todo', async () => {
const wrapper = mount(Home)
console.log(wrapper)
})
})
Share
Improve this question
asked Jan 30, 2021 at 0:58
user13766435user13766435
2 Answers
Reset to default 7Because inside Home using store, but you render without it. https://vue-test-utils.vuejs/guides/using-with-vuex.html
As correctly pointed out by @Raynhour, the problem is when store
is not being added to the test. In addition to this response, I'll add a sample code snippet, which fixed the TypeError: Cannot read property '_modulesNamespaceMap' of undefined
in one of my ponents using Vuex
.
describe("MyComponent.vue", () => {
let actions: any;
let getters: any;
let state: any;
let store: any;
let wrapper: any;
beforeEach(() => {
actions = {
sampleAction: jest.fn(),
};
getters = {
sampleGetter: jest.fn(),
};
state = {
sampleState: jest.fn(),
};
store = new Vuex.Store({
modules: {
requests: {
namespaced: true,
actions,
getters,
state,
},
},
});
});
wrapper = shallowMount(MyComponent, {
store,
});
... // Some test cases...
});
本文标签: javascriptTypeError Cannot read property 39modulesNamespaceMap39 of undefined in VueStack Overflow
版权声明:本文标题:javascript - TypeError: Cannot read property '_modulesNamespaceMap' of undefined in Vue - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736698a2530140.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论