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 18:25:12 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-10-21 18:25:12 +0200
commit424eaa9e8098cef762b1a2a7565d37944bb25306 (patch)
tree2ded69401a7c0acb33b648b464d37d3a5dcdb6a5 /tests/components/NavBar.test.js
parentd1c6e2eaed90891fc8e187f147af224b352662c8 (diff)
downloadpuszcza-424eaa9e8098cef762b1a2a7565d37944bb25306.tar.gz
puszcza-424eaa9e8098cef762b1a2a7565d37944bb25306.zip
Add storybook
Diffstat (limited to 'tests/components/NavBar.test.js')
-rw-r--r--tests/components/NavBar.test.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/components/NavBar.test.js b/tests/components/NavBar.test.js
deleted file mode 100644
index be61915..0000000
--- a/tests/components/NavBar.test.js
+++ /dev/null
@@ -1,27 +0,0 @@
-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()
-  })
-})