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/Footer.test.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/components/Footer.test.js (limited to 'test/components/Footer.test.js') diff --git a/test/components/Footer.test.js b/test/components/Footer.test.js new file mode 100644 index 0000000..e284b5a --- /dev/null +++ b/test/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() + }) +}) -- cgit 1.4.1