import React from 'react';
import { shallow } from 'enzyme';
import { FormFeedback } from '../';
describe('FormFeedback', () => {
it('should render with "form" tag by default', () => {
const wrapper = shallow(Yo!);
expect(wrapper.type()).toBe('div');
});
it('should render children', () => {
const wrapper = shallow(Yo!);
expect(wrapper.text()).toBe('Yo!');
});
it('should render with "invalid-feedback" class', () => {
const wrapper = shallow(Yo!);
expect(wrapper.hasClass('invalid-feedback')).toBe(true);
});
it('should render with "valid-feedback" class', () => {
const wrapper = shallow(Yo!);
expect(wrapper.hasClass('valid-feedback')).toBe(true);
});
it('should render with "valid-tooltip" class', () => {
const wrapper = shallow(Yo!);
expect(wrapper.hasClass('valid-tooltip')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(Yo!);
expect(wrapper.hasClass('other')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(Yo!);
expect(wrapper.type()).toBe('main');
});
});