mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
6889af430f
* feat: CP support Steps className and style * fix lint * fix: remove useMemo * docs: update docs * Update index.tsx * fix
167 lines
4.7 KiB
TypeScript
167 lines
4.7 KiB
TypeScript
import React from 'react';
|
|
import ConfigProvider from '..';
|
|
import { render } from '../../../tests/utils';
|
|
import Divider from '../../divider';
|
|
import Segmented from '../../segmented';
|
|
import Space from '../../space';
|
|
import Spin from '../../spin';
|
|
import Steps from '../../steps';
|
|
import Typography from '../../typography';
|
|
|
|
describe('ConfigProvider support style and className props', () => {
|
|
it('Should Space classNames works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
space={{
|
|
classNames: {
|
|
item: 'test-classNames',
|
|
},
|
|
}}
|
|
>
|
|
<Space>
|
|
<span>Text1</span>
|
|
<span>Text2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
expect(container.querySelector('.ant-space-item')).toHaveClass('test-classNames');
|
|
});
|
|
|
|
it('Should Space className works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
space={{
|
|
className: 'test-classNames',
|
|
}}
|
|
>
|
|
<Space>
|
|
<span>Text1</span>
|
|
<span>Text2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
expect(container.querySelector('.ant-space')).toHaveClass('test-classNames');
|
|
});
|
|
|
|
it('Should Space styles works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
space={{
|
|
styles: {
|
|
item: {
|
|
color: 'red',
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<Space>
|
|
<span>Text1</span>
|
|
<span>Text2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
expect(container.querySelector('.ant-space-item')).toHaveStyle(
|
|
'margin-right: 8px; color: red;',
|
|
);
|
|
});
|
|
|
|
it('Should Space style works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
space={{
|
|
style: {
|
|
color: 'red',
|
|
},
|
|
}}
|
|
>
|
|
<Space>
|
|
<span>Text1</span>
|
|
<span>Text2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
expect(container.querySelector('.ant-space')).toHaveStyle('color: red;');
|
|
});
|
|
|
|
it('Should Divider className works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
divider={{
|
|
className: 'config-provider-className',
|
|
}}
|
|
>
|
|
<Divider />
|
|
</ConfigProvider>,
|
|
);
|
|
expect(container.querySelector('.ant-divider')).toHaveClass('config-provider-className');
|
|
});
|
|
|
|
it('Should Divider style works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
divider={{
|
|
style: {
|
|
color: 'red',
|
|
height: 80,
|
|
},
|
|
}}
|
|
>
|
|
<Divider />
|
|
</ConfigProvider>,
|
|
);
|
|
expect(container.querySelector('.ant-divider'))?.toHaveStyle({ color: 'red', height: '80px' });
|
|
});
|
|
|
|
it('Should Typography className & style works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
typography={{ className: 'cp-typography', style: { backgroundColor: 'red' } }}
|
|
>
|
|
<Typography>test</Typography>
|
|
</ConfigProvider>,
|
|
);
|
|
const element = container.querySelector<HTMLElement>('.ant-typography');
|
|
expect(element).toHaveClass('cp-typography');
|
|
expect(element).toHaveStyle({ backgroundColor: 'red' });
|
|
});
|
|
|
|
it('Should Spin className & style works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
spin={{ className: 'config-provider-spin', style: { backgroundColor: 'red' } }}
|
|
>
|
|
<Spin />
|
|
</ConfigProvider>,
|
|
);
|
|
const element = container.querySelector<HTMLDivElement>('.ant-spin');
|
|
expect(element).toHaveClass('config-provider-spin');
|
|
expect(element).toHaveStyle({ backgroundColor: 'red' });
|
|
});
|
|
|
|
it('Should Segmented className & style works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
segmented={{ className: 'config-provider-segmented', style: { backgroundColor: 'red' } }}
|
|
>
|
|
<Segmented options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} />
|
|
</ConfigProvider>,
|
|
);
|
|
const element = container.querySelector<HTMLDivElement>('.ant-segmented');
|
|
expect(element).toHaveClass('config-provider-segmented');
|
|
expect(element).toHaveStyle({ backgroundColor: 'red' });
|
|
});
|
|
|
|
it('Should Steps className & style works', () => {
|
|
const { container } = render(
|
|
<ConfigProvider
|
|
steps={{ className: 'config-provider-steps', style: { backgroundColor: 'red' } }}
|
|
>
|
|
<Steps items={[{ title: 'title', description: 'description' }]} />
|
|
</ConfigProvider>,
|
|
);
|
|
const element = container.querySelector<HTMLDivElement>('.ant-steps');
|
|
expect(element).toHaveClass('config-provider-steps');
|
|
expect(element).toHaveStyle({ backgroundColor: 'red' });
|
|
});
|
|
});
|