diff options
Diffstat (limited to 'tests/components/Footer.test.js')
-rw-r--r-- | tests/components/Footer.test.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/components/Footer.test.js b/tests/components/Footer.test.js new file mode 100644 index 0000000..e284b5a --- /dev/null +++ b/tests/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() + }) +}) |