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

13 lines
466 B
JavaScript

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