UNPKG

421 BJavaScriptView Raw
1import { ListGroupItemText } from '..';
2import {
3 testForChildrenInComponent,
4 testForCustomClass,
5 testForDefaultClass,
6} from '../testUtils';
7
8describe('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});