From b259358616b5ca56e19b758b1f86ce2421f52c06 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sat, 31 Aug 2019 11:00:58 +0200 Subject: Add snapshots --- test/components/NavLink.test.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/components/NavLink.test.js (limited to 'test/components/NavLink.test.js') diff --git a/test/components/NavLink.test.js b/test/components/NavLink.test.js new file mode 100644 index 0000000..d35e6db --- /dev/null +++ b/test/components/NavLink.test.js @@ -0,0 +1,23 @@ +import { shallowMount } from '@vue/test-utils' +import NavLink from '../../components/NavLink' + +describe('NavLink', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(NavLink) + + wrapper.setProps({ link: '/link', name: 'Link' }) + + it('renders the correct markup', () => { + expect(wrapper.html()).toContain( + `` + ) + }) + + it('check text', () => { + expect(wrapper.text()).toBe('Link') + }) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) -- cgit 1.4.1