1 | import { ListGroupItemText } from '..';
|
2 | import {
|
3 | testForChildrenInComponent,
|
4 | testForCustomClass,
|
5 | testForDefaultClass,
|
6 | } from '../testUtils';
|
7 |
|
8 | describe('ListGroupItem', () => {
|
9 | it('should render children', () => {
|
10 | testForChildrenInComponent(ListGroupItemText);
|
11 | });
|
12 |
|
13 | it('should render with "list-group-item-text" class', () => {
|
14 | testForDefaultClass(ListGroupItemText, 'list-group-item-text');
|
15 | });
|
16 | });
|