mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
21 lines
654 B
TypeScript
21 lines
654 B
TypeScript
|
import React from 'react';
|
||
|
import { render } from '../../../tests/utils';
|
||
|
|
||
|
import Base from '../Base';
|
||
|
|
||
|
describe('Typography keep prefixCls', () => {
|
||
|
describe('Base', () => {
|
||
|
it('should support className when has prefix', () => {
|
||
|
const { container: wrapper } = render(
|
||
|
<Base component="p" prefixCls="custom-prefixCls" className="custom-class">
|
||
|
test prefixCls
|
||
|
</Base>,
|
||
|
);
|
||
|
expect(
|
||
|
(wrapper.firstChild as HTMLElement)?.className.includes('custom-prefixCls'),
|
||
|
).toBeTruthy();
|
||
|
expect((wrapper.firstChild as HTMLElement)?.className.includes('custom-class')).toBeTruthy();
|
||
|
});
|
||
|
});
|
||
|
});
|