Files
2026-01-01 15:25:19 +05:30

13 lines
452 B
JavaScript

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