UNPKG

buefy

Version:

Lightweight UI components for Vue.js based on Bulma

11 lines (9 loc) 298 B
import { mount } from '@vue/test-utils' import BSteps from '@components/steps/Steps' describe('BSteps', () => { it('is called', () => { const wrapper = mount(BSteps) expect(wrapper.name()).toBe('BSteps') expect(wrapper.isVueInstance()).toBeTruthy() }) })