import { mount } from '@vue/test-utils'; import { DataOverlayAnnotationFaker } from '@test/fakers/data-overlay-annotation.faker'; import AnnotationIcon from '@/components/navigation/annotation/AnnotationIcon.vue'; describe('MaskIcon tests', () => { const annotation = DataOverlayAnnotationFaker.random(); it('should mount', () => { const props = { annotation }; const wrapper = mount(AnnotationIcon, { props }); expect(wrapper).toBeTruthy(); }); });