bootstrap-vue
Version:
With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens
118 lines (96 loc) • 3.14 kB
JavaScript
import { mount } from '@vue/test-utils'
import { BDropdownItemButton } from './dropdown-item-button'
describe('dropdown-item-button', () => {
it('renders with tag "button" and type="button" by default', async () => {
const wrapper = mount(BDropdownItemButton)
expect(wrapper.element.tagName).toBe('LI')
const button = wrapper.find('button')
expect(button.element.tagName).toBe('BUTTON')
expect(button.attributes('type')).toBe('button')
wrapper.destroy()
})
it('has class "dropdown-item"', async () => {
const wrapper = mount(BDropdownItemButton)
expect(wrapper.element.tagName).toBe('LI')
const button = wrapper.find('button')
expect(button.classes()).toContain('dropdown-item')
expect(button.classes()).not.toContain('active')
wrapper.destroy()
})
it('has class "active" when active=true', async () => {
const wrapper = mount(BDropdownItemButton, {
propsData: { active: true }
})
expect(wrapper.element.tagName).toBe('LI')
const button = wrapper.find('button')
expect(button.classes()).toContain('active')
expect(button.classes()).toContain('dropdown-item')
wrapper.destroy()
})
it('has attribute "disabled" when disabled=true', async () => {
const wrapper = mount(BDropdownItemButton, {
propsData: { disabled: true }
})
expect(wrapper.element.tagName).toBe('LI')
const button = wrapper.find('button')
expect(button.attributes('disabled')).toBeDefined()
wrapper.destroy()
})
it('calls dropdown hide(true) method when clicked', async () => {
let called = false
let refocus = null
const wrapper = mount(BDropdownItemButton, {
provide: {
getBvDropdown: () => ({
hide(arg) {
called = true
refocus = arg
}
})
}
})
expect(wrapper.element.tagName).toBe('LI')
const button = wrapper.find('button')
expect(button).toBeDefined()
await button.trigger('click')
expect(called).toBe(true)
expect(refocus).toBe(true)
wrapper.destroy()
})
it('does not call dropdown hide(true) method when clicked and disabled', async () => {
let called = false
let refocus = null
const wrapper = mount(BDropdownItemButton, {
propsData: {
disabled: true
},
provide: {
getBvDropdown: () => ({
hide(arg) {
called = true
refocus = arg
}
})
}
})
expect(wrapper.element.tagName).toBe('LI')
const button = wrapper.find('button')
expect(button).toBeDefined()
await button.trigger('click')
expect(called).toBe(false)
expect(refocus).toBe(null)
wrapper.destroy()
})
it('has buttonClass when prop is passed a value', () => {
const wrapper = mount(BDropdownItemButton, {
propsData: {
buttonClass: 'button-class'
}
})
expect(wrapper.element.tagName).toBe('LI')
const button = wrapper.find('button')
expect(button.classes()).toContain('button-class')
expect(button.classes()).toContain('dropdown-item')
wrapper.destroy()
})
})