forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputGroupAddon.spec.js
More file actions
38 lines (28 loc) · 1.34 KB
/
Copy pathInputGroupAddon.spec.js
File metadata and controls
38 lines (28 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import React from 'react';
import { shallow } from 'enzyme';
import { InputGroupAddon } from '../';
describe('InputGroupAddon', () => {
it('should render with "div" tag', () => {
const wrapper = shallow(<InputGroupAddon addonType="append">Yo!</InputGroupAddon>);
expect(wrapper.type()).toBe('div');
});
it('should render children', () => {
const wrapper = shallow(<InputGroupAddon addonType="append">Yo!</InputGroupAddon>);
expect(wrapper.text()).toBe('<InputGroupText />');
});
it('should render with "input-group-*" classes', () => {
const wrapperPrepend = shallow(<InputGroupAddon addonType="prepend">Yo!</InputGroupAddon>);
const wrapperAppend = shallow(<InputGroupAddon addonType="append">Yo!</InputGroupAddon>);
expect(wrapperPrepend.hasClass('input-group-prepend')).toBe(true);
expect(wrapperAppend.hasClass('input-group-append')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(<InputGroupAddon addonType="append" className="other">Yo!</InputGroupAddon>);
expect(wrapper.hasClass('other')).toBe(true);
expect(wrapper.hasClass('input-group-append')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(<InputGroupAddon addonType="append" tag="main">Yo!</InputGroupAddon>);
expect(wrapper.type()).toBe('main');
});
});