import { shallowMount } from '@vue/test-utils' import BaseIcon from '@/elements/icon/BaseIcon.vue' describe('BaseIcon.vue', () => { it('should be a Vue instance when mounted', () => { const wrapper = shallowMount(BaseIcon) expect(wrapper.isVueInstance()).toBeTruthy() }) })