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