Files
cartlog-admin/node_modules/reactstrap/esm/__tests__/CardGroup.spec.js
2026-01-01 15:25:19 +05:30

13 lines
459 B
JavaScript

import { CardGroup } from '..';
import { testForCustomClass, testForCustomTag, testForDefaultClass } from '../testUtils';
describe('CardGroup', function () {
it('should render with "card-group" class', function () {
testForDefaultClass(CardGroup, 'card-group');
});
it('should render additional classes', function () {
testForCustomClass(CardGroup);
});
it('should render custom tag', function () {
testForCustomTag(CardGroup);
});
});