Last active
September 30, 2018 04:45
-
-
Save eddyerburgh/aab9495e9c8b8c971e2baad8c059a766 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { shallow } 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 = shallow(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