UNPKG

409 BJavaScriptView Raw
1import { ListGroupItemHeading } from '..';
2import { testForChildrenInComponent, testForDefaultClass } from '../testUtils';
3
4describe('ListGroupItem', () => {
5 it('should render children', () => {
6 testForChildrenInComponent(ListGroupItemHeading);
7 });
8
9 it('should render with "list-group-item-heading" class', () => {
10 testForDefaultClass(ListGroupItemHeading, 'list-group-item-heading');
11 });
12});