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

13 lines
473 B
JavaScript

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