about summary refs log tree commit diff
path: root/tests/components/NavBar.test.js
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-10-21 11:00:33 +0200
committerGitHub <noreply@github.com>2019-10-21 11:00:33 +0200
commitd1c6e2eaed90891fc8e187f147af224b352662c8 (patch)
tree982bd663d60b22b14f719af03cd459e5ee3b3ed4 /tests/components/NavBar.test.js
parent72549ed7b81fc01445fecdb7889bab4cf2a1590f (diff)
parent07ac4a05a3e02c95ba9482f94f19589b8ab7fd3c (diff)
downloadpuszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.tar.gz
puszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.zip
Merge pull request #3 from 19pdh/kronika
Kronika
Diffstat (limited to 'tests/components/NavBar.test.js')
-rw-r--r--tests/components/NavBar.test.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/components/NavBar.test.js b/tests/components/NavBar.test.js
new file mode 100644
index 0000000..be61915
--- /dev/null
+++ b/tests/components/NavBar.test.js
@@ -0,0 +1,27 @@
+import { shallowMount } from '@vue/test-utils'
+import NavBar from '../../components/NavBar'
+
+describe('NavBar', () => {
+  // Now mount the component and you have the wrapper
+  const wrapper = shallowMount(NavBar)
+
+  wrapper.setProps({
+    title: 'Title',
+    routes: [
+      {
+        path: '/',
+        name: 'Home'
+      }
+    ]
+  })
+
+  it('check title', () => {
+    expect(wrapper.html()).toContain(
+      '<nuxt-link to="/" class="title-name">Title</nuxt-link>'
+    )
+  })
+
+  it('match snapshot', () => {
+    expect(wrapper.element).toMatchSnapshot()
+  })
+})