UNPKG

@controlla/cli

Version:

Command line interface for rapid Controlla projects development

10 lines (8 loc) 232 B
import { mount } from '@vue/test-utils' import Logo from '@/components/Logo.vue' describe('Logo', () => { test('is a Vue instance', () => { const wrapper = mount(Logo) expect(wrapper.isVueInstance()).toBeTruthy() }) })