芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/reactstrap/src/__tests__/ListGroup.spec.js
import React from 'react'; import { shallow } from 'enzyme'; import { ListGroup } from '../'; describe('ListGroup', () => { it('should render with "list-group" class', () => { const wrapper = shallow(
Yo!
); expect(wrapper.text()).toBe('Yo!'); expect(wrapper.hasClass('list-group')).toBe(true); }); it('should render with "flush"', () => { const wrapper = shallow(
Yo!
); expect(wrapper.text()).toBe('Yo!'); expect(wrapper.hasClass('list-group')).toBe(true); expect(wrapper.hasClass('list-group-flush')).toBe(true); }); it('should render with "horizontal"', () => { const wrapper = shallow(
Yo!
); expect(wrapper.text()).toBe("Yo!"); expect(wrapper.hasClass("list-group")).toBe(true); expect(wrapper.hasClass("list-group-horizontal")).toBe(true); }); it('should not render with "horizontal" if flush is true', () => { const wrapper = shallow(
Yo!
); expect(wrapper.text()).toBe("Yo!"); expect(wrapper.hasClass("list-group")).toBe(true); expect(wrapper.hasClass("list-group-flush")).toBe(true); expect(wrapper.hasClass("list-group-horizontal")).toBe(false); }); it('should render with "horizontal-{breakpoint}"', () => { const wrapper = shallow(
Yo!
); expect(wrapper.text()).toBe("Yo!"); expect(wrapper.hasClass("list-group")).toBe(true); expect(wrapper.hasClass("list-group-horizontal-lg")).toBe(true); }); it('should render additional classes', () => { const wrapper = shallow(
Yo!
); expect(wrapper.text()).toBe('Yo!'); expect(wrapper.hasClass('other')).toBe(true); expect(wrapper.hasClass('list-group')).toBe(true); }); it('should render custom tag', () => { const wrapper = shallow(
Yo!
); expect(wrapper.text()).toBe('Yo!'); expect(wrapper.hasClass('list-group')).toBe(true); expect(wrapper.find('main').length).toBe(1); }); });