import { mount } from '@vue/test-utils'; import DemoLicenceInfoModal from '@/components/demo/DemoInfoModal.vue'; describe('DemoLicenceInfoModal tests', () => { it('should mount', () => { const props = { modal: true, isModalOpen: true }; const wrapper = mount(DemoLicenceInfoModal, { props }); expect(wrapper).toBeTruthy(); }); });