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
36 lines (26 loc) · 1.06 KB
/
Copy pathInputGroupAddon.spec.js
File metadata and controls
36 lines (26 loc) · 1.06 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
import React from 'react';
import { shallow } from 'enzyme';
import { InputGroupAddon } from '../';
describe('InputGroupAddon', () => {
it('should render with "div" tag', () => {
const wrapper = shallow(<InputGroupAddon>Yo!</InputGroupAddon>);
expect(wrapper.type()).toBe('div');
});
it('should render children', () => {
const wrapper = shallow(<InputGroupAddon>Yo!</InputGroupAddon>);
expect(wrapper.text()).toBe('Yo!');
});
it('should render with "input-group-addon" class', () => {
const wrapper = shallow(<InputGroupAddon>Yo!</InputGroupAddon>);
expect(wrapper.hasClass('input-group-addon')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(<InputGroupAddon className="other">Yo!</InputGroupAddon>);
expect(wrapper.hasClass('other')).toBe(true);
expect(wrapper.hasClass('input-group-addon')).toBe(true);
});
it('should render custom tag', () => {
const wrapper = shallow(<InputGroupAddon tag="main">Yo!</InputGroupAddon>);
expect(wrapper.type()).toBe('main');
});
});