1 | import { ListGroupItemHeading } from '..';
|
2 | import { testForChildrenInComponent, testForDefaultClass } from '../testUtils';
|
3 |
|
4 | describe('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 | });
|