File: //home/arjun/projects/buyercall/node_modules/bootstrap-vue/src/components/toast/toaster.spec.js
import { PortalTarget } from 'portal-vue'
import { mount } from '@vue/test-utils'
import { isVue3 } from '../../vue'
import { waitNT, waitRAF } from '../../../tests/utils'
import { BToaster } from './toaster'
describe('b-toaster', () => {
it('has expected structure', async () => {
const wrapper = mount(BToaster, {
attachTo: document.body,
propsData: {
name: 'foo'
}
})
expect(wrapper.vm).toBeDefined()
await waitNT(wrapper.vm)
await waitRAF()
expect(wrapper.element.tagName).toBe('DIV')
expect(wrapper.attributes('id')).toBe('foo')
expect(wrapper.attributes('aria-live')).toBeUndefined()
expect(wrapper.attributes('aria-atomic')).toBeUndefined()
expect(wrapper.attributes('role')).toBeUndefined()
expect(wrapper.classes()).toContain('b-toaster')
expect(wrapper.classes()).toContain('foo')
expect(wrapper.classes().length).toBe(2)
expect(wrapper.find('.b-toaster-slot').exists()).toBe(true)
const $slot = wrapper.find('.b-toaster-slot')
if (!isVue3) {
expect($slot.findComponent(PortalTarget).exists()).toBe(true)
}
expect($slot.element.tagName).toBe('DIV')
expect($slot.classes()).toContain('b-toaster-slot')
expect($slot.classes()).toContain('vue-portal-target')
expect($slot.classes().length).toBe(2)
expect($slot.text()).toEqual('')
wrapper.destroy()
})
it('accepts aria props', async () => {
const wrapper = mount(BToaster, {
attachTo: document.body,
propsData: {
name: 'bar',
ariaLive: 'assertive',
ariaAtomic: 'true',
role: 'alert'
}
})
expect(wrapper.vm).toBeDefined()
await waitNT(wrapper.vm)
await waitRAF()
expect(wrapper.element.tagName).toBe('DIV')
expect(wrapper.attributes('id')).toBe('bar')
expect(wrapper.attributes('aria-live')).toEqual('assertive')
expect(wrapper.attributes('aria-atomic')).toEqual('true')
expect(wrapper.attributes('role')).toEqual('alert')
expect(wrapper.find('.b-toaster-slot').exists()).toBe(true)
const $slot = wrapper.find('.b-toaster-slot')
if (!isVue3) {
expect($slot.findComponent(PortalTarget).exists()).toBe(true)
}
expect($slot.element.tagName).toBe('DIV')
expect($slot.classes()).toContain('b-toaster-slot')
expect($slot.classes()).toContain('vue-portal-target')
expect($slot.classes().length).toBe(2)
expect($slot.text()).toEqual('')
wrapper.destroy()
})
})