about summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Logo.spec.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Logo.spec.js b/test/Logo.spec.js
new file mode 100644
index 0000000..1628640
--- /dev/null
+++ b/test/Logo.spec.js
@@ -0,0 +1,9 @@
+import { mount } from '@vue/test-utils'
+import Logo from '@/components/Logo.vue'
+
+describe('Logo', () => {
+  test('is a Vue instance', () => {
+    const wrapper = mount(Logo)
+    expect(wrapper.isVueInstance()).toBeTruthy()
+  })
+})