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