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