blob: d4bd6490cab7875ff85567f66b7e4fca05464642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { shallowMount } from '@vue/test-utils'
import doPobrania from '../../pages/do-pobrania'
describe('doPobrania', () => {
// Now mount the component and you have the wrapper
const wrapper = shallowMount(doPobrania)
it('match snapshot', () => {
expect(wrapper.element).toMatchSnapshot()
})
})
|