diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-21 11:00:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 11:00:33 +0200 |
commit | d1c6e2eaed90891fc8e187f147af224b352662c8 (patch) | |
tree | 982bd663d60b22b14f719af03cd459e5ee3b3ed4 /tests/pages/index.test.js | |
parent | 72549ed7b81fc01445fecdb7889bab4cf2a1590f (diff) | |
parent | 07ac4a05a3e02c95ba9482f94f19589b8ab7fd3c (diff) | |
download | puszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.tar.gz puszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.zip |
Merge pull request #3 from 19pdh/kronika
Kronika
Diffstat (limited to 'tests/pages/index.test.js')
-rw-r--r-- | tests/pages/index.test.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/pages/index.test.js b/tests/pages/index.test.js new file mode 100644 index 0000000..1e262b3 --- /dev/null +++ b/tests/pages/index.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import index from '../../pages/index' + +describe('index', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(index) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) |