about summary refs log tree commit diff
path: root/tests/components/Footer.test.js
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-11-28 11:18:45 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-11-28 11:18:45 +0100
commit7051b88fd36e56dcfab7b73b80811c93bc1d0921 (patch)
treefec99da81e654e710a2df1f0cb66cff1c4406a7b /tests/components/Footer.test.js
parent1b70d2f3c1dbed43317c1da7ed8092daac27168d (diff)
parente12c489d3ad6111c78c9cb4d4b8ab77b053c49ad (diff)
downloadpuszcza-7051b88fd36e56dcfab7b73b80811c93bc1d0921.tar.gz
puszcza-7051b88fd36e56dcfab7b73b80811c93bc1d0921.zip
Merge remote-tracking branch 'origin/develop' into feature/ranking
Diffstat (limited to 'tests/components/Footer.test.js')
-rw-r--r--tests/components/Footer.test.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/components/Footer.test.js b/tests/components/Footer.test.js
new file mode 100644
index 0000000..e284b5a
--- /dev/null
+++ b/tests/components/Footer.test.js
@@ -0,0 +1,20 @@
+import { shallowMount } from '@vue/test-utils'
+import Footer from '../../components/Footer'
+
+describe('Footer', () => {
+  // Now mount the component and you have the wrapper
+  const wrapper = shallowMount(Footer)
+
+  wrapper.setProps({
+    routes: [
+      {
+        path: '/',
+        name: 'Home'
+      }
+    ]
+  })
+
+  it('match snapshot', () => {
+    expect(wrapper.element).toMatchSnapshot()
+  })
+})