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