12345678910111213141516171819202122232425 |
- import { mount, shallow } from '@vue/test-utils'
- import Parent from './components/Parent.vue'
- describe('Parent.vue', () => {
- it('mount snapshot', () => {
- const wrapper = mount(Parent)
- expect(wrapper.html()).toMatchSnapshot()
- expect(wrapper.element).toMatchSnapshot()
- })
- it('shallow snapshot', () => {
- const wrapper = shallow(Parent)
- expect(wrapper.html()).toMatchSnapshot()
- })
- it('properly serializes a shallowly-rendered wrapper', () => {
- const wrapper = shallow(Parent)
- expect(wrapper).toMatchSnapshot()
- })
- it('properly serializes a fully-mounted wrapper', () => {
- const wrapper = mount(Parent)
- expect(wrapper).toMatchSnapshot()
- })
- })
|