bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
41 lines (34 loc) • 1.15 kB
text/typescript
import {enableAutoUnmount, mount} from '@vue/test-utils'
import {afterEach, describe, expect, it} from 'vitest'
import BAccordion from './BAccordion.vue'
describe('accordion', () => {
enableAutoUnmount(afterEach)
it('has static class accordion', () => {
const wrapper = mount(BAccordion)
expect(wrapper.classes()).toContain('accordion')
})
it('has computed id by default', () => {
const wrapper = mount(BAccordion)
expect(wrapper.attributes('id')).toBeDefined()
})
it('has id when prop id is set', () => {
const wrapper = mount(BAccordion, {
props: {id: 'abc'},
})
expect(wrapper.attributes('id')).toBe('abc')
})
it('has class accordion-flush when flush is true', async () => {
const wrapper = mount(BAccordion, {
props: {flush: true},
})
expect(wrapper.classes()).toContain('accordion-flush')
await wrapper.setProps({flush: false})
expect(wrapper.classes()).not.toContain('accordion-flush')
})
it('renders default slot', () => {
const wrapper = mount(BAccordion, {
slots: {default: 'foobar'},
})
expect(wrapper.text()).toBe('foobar')
})
})