buefy
Version:
Lightweight UI components for Vue.js (v3) based on Bulma
41 lines (33 loc) • 1.36 kB
text/typescript
import { shallowMount } from '@vue/test-utils'
import type { VueWrapper } from '@vue/test-utils'
import { beforeEach, describe, expect, it, vi } from 'vitest'
import BRadio from '@components/radio/Radio.vue'
let wrapper: VueWrapper<InstanceType<typeof BRadio>>
describe('BRadio', () => {
beforeEach(() => {
wrapper = shallowMount(BRadio)
})
it('is called', () => {
expect(wrapper.vm).toBeTruthy()
expect(wrapper.vm.$options.name).toBe('BRadio')
})
it('render correctly', () => {
expect(wrapper.html()).toMatchSnapshot()
})
it('has an input radio', () => {
expect(wrapper.find('label input[type=radio]').exists()).toBeTruthy()
})
it('emit input event with value when value change', async () => {
await wrapper.setProps({ modelValue: true })
expect(wrapper.vm.computedValue).toBeTruthy()
wrapper.vm.computedValue = false
const valueEmitted = wrapper.emitted()['update:modelValue'][0]
expect(valueEmitted).toContainEqual(false)
})
it('method focus() gives focus to the input element', async () => {
(wrapper.vm.$refs.input as HTMLInputElement).focus = vi.fn()
wrapper.vm.focus()
await wrapper.vm.$nextTick()
expect((wrapper.vm.$refs.input as HTMLInputElement).focus).toHaveBeenCalled()
})
})