diff options
Diffstat (limited to 'tests/pages/download.test.js')
-rw-r--r-- | tests/pages/download.test.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/pages/download.test.js b/tests/pages/download.test.js new file mode 100644 index 0000000..78f16d9 --- /dev/null +++ b/tests/pages/download.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import download from '../../pages/download' + +describe('download', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(download) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) |