UNPKG

buefy

Version:

Lightweight UI components for Vue.js based on Bulma

11 lines (9 loc) 312 B
import { shallowMount } from '@vue/test-utils' import BModal from '@components/modal/Modal' describe('BModal', () => { it('is called', () => { const wrapper = shallowMount(BModal) expect(wrapper.name()).toBe('BModal') expect(wrapper.isVueInstance()).toBeTruthy() }) })