reactstrap
Version:
React Bootstrap components
21 lines (17 loc) • 476 B
JavaScript
import { OffcanvasBody } from '..';
import {
testForCustomClass,
testForCustomTag,
testForDefaultClass,
} from '../testUtils';
describe('OffcanvasBody', () => {
it('should render with "offcanvas-body" class', () => {
testForDefaultClass(OffcanvasBody, 'offcanvas-body ');
});
it('should render additional classes', () => {
testForCustomClass(OffcanvasBody);
});
it('should render custom tag', () => {
testForCustomTag(OffcanvasBody);
});
});