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