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