diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-20 22:25:48 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-20 22:25:48 +0200 |
commit | 058d8ff80bf3b1f1744105f5f10fd6fbbbfbb9b1 (patch) | |
tree | 237b3540c9ed31bc1fc2fcaad783646b182732fb /test/components/Footer.test.js | |
parent | 84a95c8c4ecf5348341502f95250c4588181786d (diff) | |
download | puszcza-058d8ff80bf3b1f1744105f5f10fd6fbbbfbb9b1.tar.gz puszcza-058d8ff80bf3b1f1744105f5f10fd6fbbbfbb9b1.zip |
Move to 'tests'
Diffstat (limited to 'test/components/Footer.test.js')
-rw-r--r-- | test/components/Footer.test.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/components/Footer.test.js b/test/components/Footer.test.js deleted file mode 100644 index e284b5a..0000000 --- a/test/components/Footer.test.js +++ /dev/null @@ -1,20 +0,0 @@ -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() - }) -}) |