reactstrap
Version:
React Bootstrap components
13 lines (10 loc) • 409 B
JavaScript
import { ListGroupItemHeading } from '..';
import { testForChildrenInComponent, testForDefaultClass } from '../testUtils';
describe('ListGroupItem', () => {
it('should render children', () => {
testForChildrenInComponent(ListGroupItemHeading);
});
it('should render with "list-group-item-heading" class', () => {
testForDefaultClass(ListGroupItemHeading, 'list-group-item-heading');
});
});