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