From 163c7ee1dc2cdb6b5b3118e677d47e36c1abf01e Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Date: Tue, 14 Mar 2023 14:49:08 +0530 Subject: [PATCH] =?UTF-8?q?test:=20initial=20tests=20for=20Map,=20Marker?= =?UTF-8?q?=20&=20Popup=20Components=20=F0=9F=A7=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> --- test/map/VMap.spec.ts | 6 ++++++ test/markers/VMarker.spec.ts | 6 ++++++ test/popups/VPopup.spec.ts | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 test/map/VMap.spec.ts create mode 100644 test/markers/VMarker.spec.ts create mode 100644 test/popups/VPopup.spec.ts 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(); +});