blob: 78f16d95cf560ab8c6a7ef2c5f48a4ab7e2a0a6d (
plain)
1
2
3
4
5
6
7
8
9
10
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()
})
})
|