[Vuejs]-Import vue-awesome icons error while jest testing with nuxt on node 13.9.0

0πŸ‘

βœ…

It looks like I have to explicitly mock the component and its imports at the top of the file (below the imports)

the following works for my test.

import { shallowMount, createLocalVue } from '@vue/test-utils'
import Vuex from 'vuex'
import { AxiosSpy, MockNuxt } from 'jest-nuxt-helper'
import index from '@/pages/courses/index'

// MOCKS:
jest.mock('vue-awesome/icons/building', () => '')
jest.mock('vue-awesome/components/Icon', () => '<div></div>')

...

Leave a comment