Skip to content

Instantly share code, notes, and snippets.

@eddyerburgh
Last active September 30, 2018 04:52
Show Gist options
  • Save eddyerburgh/2f0973cb13f824b210e001ae24bf874e to your computer and use it in GitHub Desktop.
Save eddyerburgh/2f0973cb13f824b210e001ae24bf874e to your computer and use it in GitHub Desktop.
import test from 'tape'
import { shallow } from '@vue/test-utils'
import List from '../../src/components/List.vue'
test('List.vue renders', t => {
t.plan(1)
const wrapper = shallow(List)
t.equal(typeof wrapper, 'object')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment