Skip to content

Commit

Permalink
test: initial tests for Map, Marker & Popup Components 馃И
Browse files Browse the repository at this point in the history
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
  • Loading branch information
vinayakkulkarni committed Mar 14, 2023
1 parent 8df4bc5 commit 163c7ee
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/map/VMap.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { test, expect } from 'vitest';
import VMap from '../../src/map/VMap.vue';

test('mount component', async () => {
expect(VMap).toBeTruthy();
});
6 changes: 6 additions & 0 deletions test/markers/VMarker.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { test, expect } from 'vitest';
import VMarker from '../../src/markers/VMarker.vue';

test('mount component', async () => {
expect(VMarker).toBeTruthy();
});
6 changes: 6 additions & 0 deletions test/popups/VPopup.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { test, expect } from 'vitest';
import VPopup from '../../src/popups/VPopup.vue';

test('mount component', async () => {
expect(VPopup).toBeTruthy();
});

0 comments on commit 163c7ee

Please sign in to comment.