buefy
Version:
Lightweight UI components for Vue.js based on Bulma
12 lines (9 loc) • 370 B
JavaScript
import { shallowMount } from '@vue/test-utils'
import BClockpickerFace from '@components/clockpicker/ClockpickerFace'
describe('BClockpickerFace', () => {
it('is called', () => {
const wrapper = shallowMount(BClockpickerFace)
expect(wrapper.name()).toBe('BClockpickerFace')
expect(wrapper.isVueInstance()).toBeTruthy()
})
})