芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/reactstrap/src/__tests__/ListGroupItem.spec.js
import React from 'react'; import { shallow, mount } from 'enzyme'; import { ListGroupItem } from '../'; describe('ListGroupItem', () => { it('should render children', () => { const listGroupItem = shallow(
Yo!
).find('li'); expect(listGroupItem.text()).toBe('Yo!'); }); it('should render with "list-group-item" class', () => { const wrapper = shallow(
Yo!
); expect(wrapper.hasClass('list-group-item')).toBe(true); }); it('should render with "active" class when active is passed', () => { const wrapper = shallow(
Yo!
); expect(wrapper.hasClass('active')).toBe(true); }); it('should render with "disabled" class when disabled is passed', () => { const wrapper = shallow(
Yo!
); expect(wrapper.hasClass('disabled')).toBe(true); }); it('should render with "list-group-item-action" class when action is passed', () => { const wrapper = shallow(
Yo!
); 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(
Yo!
); 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(
Yo!
); wrapper.find('li').hostNodes().simulate('click'); expect(onDisableClick).not.toHaveBeenCalled(); }); });