// List.spec.js
describe('List.vue', () => {
it('renders li for each item in props.items', () => {
// const items = ['', '']
// const wrapper = shallow(List, {
// propsData: { items }
// })
// expect(wrapper.findAll('li')).toHaveLength(items.length)
})
})

