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