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

13 lines
452 B
JavaScript

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