about summary refs log tree commit diff
path: root/tests/pages/kontakt.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pages/kontakt.test.js')
-rw-r--r--tests/pages/kontakt.test.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/pages/kontakt.test.js b/tests/pages/kontakt.test.js
new file mode 100644
index 0000000..d99e120
--- /dev/null
+++ b/tests/pages/kontakt.test.js
@@ -0,0 +1,11 @@
+import { shallowMount } from '@vue/test-utils'
+import kontakt from '../../pages/kontakt'
+
+describe('kontakt', () => {
+  // Now mount the component and you have the wrapper
+  const wrapper = shallowMount(kontakt)
+
+  it('match snapshot', () => {
+    expect(wrapper.element).toMatchSnapshot()
+  })
+})