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