Skip to content

Instantly share code, notes, and snippets.

@lex111
Forked from eddyerburgh/List.spec.js
Last active July 1, 2018 12:34
Show Gist options
  • Save lex111/8e7d1b97ef413adaedaef6a9a8bed18e to your computer and use it in GitHub Desktop.
Save lex111/8e7d1b97ef413adaedaef6a9a8bed18e to your computer and use it in GitHub Desktop.
import { shallowMount } from '@vue/test-utils'
import List from '@/components/List.vue'
describe('List.vue', () => {
it('renders li for each item in props.items', () => {
const items = ['', '']
const wrapper = shallowMount(List, {
propsData: { items }
})
expect(wrapper.findAll('li')).toHaveLength(items.length)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment