console.error node_modules/vue/dist/vue.runtime.common.dev.js:621
[Vue warn]: Error in mounted hook (Promise/async): "TypeError: Cannot read property 'get' of undefined"
found in
---> <Anonymous>
<Root>
console.error node_modules/vue/dist/vue.runtime.common.dev.js:1884
TypeError: Cannot read property 'get' of undefined
at VueComponent.mounted (/home/ubuntu/vue-testing-skel/src/components/ChatApp.vue:66:1)
Строка, которая вызывает ошибку:
this.current_nickname = this.$cookies.get('nickname')
this.$cookies
предоставляется модулем под названием vue-cookies
Я установил его и сохранил в моих devDependencies, но, кажется, Jest не может найти или загрузить его.
Я не уверен, что мне нужно сделать, чтобы убедиться, что Jest загружает эти модули правильно.