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