UNPKG

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

158 lines (118 loc) 3.41 kB
import { mount } from '@vue/test-utils' import { BFormValidFeedback } from './form-valid-feedback' describe('form-valid-feedback', () => { it('default should have tag div', async () => { const wrapper = mount(BFormValidFeedback) expect(wrapper.element.tagName).toBe('DIV') wrapper.destroy() }) it('default should contain base class', async () => { const wrapper = mount(BFormValidFeedback) expect(wrapper.classes()).toContain('valid-feedback') wrapper.destroy() }) it('default should not have class d-block', async () => { const wrapper = mount(BFormValidFeedback) expect(wrapper.classes()).not.toContain('d-block') wrapper.destroy() }) it('default should not have class valid-tooltip', async () => { const wrapper = mount(BFormValidFeedback) expect(wrapper.classes()).not.toContain('valid-tooltip') wrapper.destroy() }) it('default should not have id', async () => { const wrapper = mount(BFormValidFeedback) expect(wrapper.attributes('id')).toBeUndefined() wrapper.destroy() }) it('default should have user supplied id', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { id: 'foobar' } } }) expect(wrapper.attributes('id')).toBe('foobar') wrapper.destroy() }) it('should have tag small when tag=small', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { tag: 'small' } } }) expect(wrapper.element.tagName).toBe('SMALL') wrapper.destroy() }) it('should contain class d-block when force-show is set', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { forceShow: true } } }) expect(wrapper.classes()).toContain('d-block') wrapper.destroy() }) it('should contain class d-block when state is true', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { state: true } } }) expect(wrapper.classes()).toContain('d-block') wrapper.destroy() }) it('should not contain class d-block when state is false', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { state: false } } }) expect(wrapper.classes()).not.toContain('d-block') wrapper.destroy() }) it('should contain class d-block when force-show is true and state is false', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { forceShow: true, state: false } } }) expect(wrapper.classes()).toContain('d-block') wrapper.destroy() }) it('should contain class valid-tooltip when tooltip is set', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { tooltip: true } } }) expect(wrapper.classes()).toContain('valid-tooltip') wrapper.destroy() }) it('should not contain class valid-feedback when tooltip is set', async () => { const wrapper = mount(BFormValidFeedback, { context: { props: { tooltip: true } } }) expect(wrapper.classes()).not.toContain('valid-feedback') wrapper.destroy() }) })