forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListGroupItem.spec.js
More file actions
42 lines (35 loc) · 1.67 KB
/
Copy pathListGroupItem.spec.js
File metadata and controls
42 lines (35 loc) · 1.67 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
39
40
41
42
import React from 'react';
import { shallow, mount } from 'enzyme';
import { ListGroupItem } from '../';
describe('ListGroupItem', () => {
it('should render children', () => {
const listGroupItem = shallow(<ListGroupItem>Yo!</ListGroupItem>).find('li');
expect(listGroupItem.text()).toBe('Yo!');
});
it('should render with "list-group-item" class', () => {
const wrapper = shallow(<ListGroupItem>Yo!</ListGroupItem>);
expect(wrapper.hasClass('list-group-item')).toBe(true);
});
it('should render with "active" class when active is passed', () => {
const wrapper = shallow(<ListGroupItem active>Yo!</ListGroupItem>);
expect(wrapper.hasClass('active')).toBe(true);
});
it('should render with "disabled" class when disabled is passed', () => {
const wrapper = shallow(<ListGroupItem disabled>Yo!</ListGroupItem>);
expect(wrapper.hasClass('disabled')).toBe(true);
});
it('should render with "list-group-item-action" class when action is passed', () => {
const wrapper = shallow(<ListGroupItem action>Yo!</ListGroupItem>);
expect(wrapper.hasClass('list-group-item-action')).toBe(true);
});
it('should render with "list-group-item-${color}" class when color is passed', () => {
const wrapper = shallow(<ListGroupItem color="success">Yo!</ListGroupItem>);
expect(wrapper.hasClass('list-group-item-success')).toBe(true);
});
it('should prevent click event when disabled is passed', () => {
const onDisableClick = jest.fn();
const wrapper = mount(<ListGroupItem disabled onClick={onDisableClick}>Yo!</ListGroupItem>);
wrapper.find('li').hostNodes().simulate('click');
expect(onDisableClick).not.toHaveBeenCalled();
});
});