From 058d8ff80bf3b1f1744105f5f10fd6fbbbfbb9b1 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sun, 20 Oct 2019 22:25:48 +0200 Subject: Move to 'tests' --- tests/components/NavBar.test.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/components/NavBar.test.js (limited to 'tests/components/NavBar.test.js') 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( + 'Title' + ) + }) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) -- cgit 1.4.1