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