diff --git a/test/map/VMap.spec.ts b/test/map/VMap.spec.ts new file mode 100644 index 00000000..76913bb7 --- /dev/null +++ b/test/map/VMap.spec.ts @@ -0,0 +1,6 @@ +import { test, expect } from 'vitest'; +import VMap from '../../src/map/VMap.vue'; + +test('mount component', async () => { + expect(VMap).toBeTruthy(); +}); diff --git a/test/markers/VMarker.spec.ts b/test/markers/VMarker.spec.ts new file mode 100644 index 00000000..3e2af1b2 --- /dev/null +++ b/test/markers/VMarker.spec.ts @@ -0,0 +1,6 @@ +import { test, expect } from 'vitest'; +import VMarker from '../../src/markers/VMarker.vue'; + +test('mount component', async () => { + expect(VMarker).toBeTruthy(); +}); diff --git a/test/popups/VPopup.spec.ts b/test/popups/VPopup.spec.ts new file mode 100644 index 00000000..60bb9df9 --- /dev/null +++ b/test/popups/VPopup.spec.ts @@ -0,0 +1,6 @@ +import { test, expect } from 'vitest'; +import VPopup from '../../src/popups/VPopup.vue'; + +test('mount component', async () => { + expect(VPopup).toBeTruthy(); +});