UNPKG

create-nuxt-app

Version:
9 lines (7 loc) 213 B
import { mount } from '@vue/test-utils' import test from 'ava' import Logo from '../../components/Logo.vue' test('is a Vue instance', t => { const wrapper = mount(Logo) t.is(wrapper.isVueInstance(), true) })