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