import { mount } from '@vue/test-utils'; import List from '..'; describe('List', () => { it('renders empty list', () => { const wrapper = mount({ render() { return } />; }, }); expect(wrapper.html()).toMatchSnapshot(); }); });