mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
import { SearchOutlined } from '@ant-design/icons';
|
|
import Button from 'antd/es/button';
|
|
|
|
import ConfigProvider from '..';
|
|
import { render } from '../../../tests/utils';
|
|
|
|
describe('ConfigProvider.button', () => {
|
|
beforeEach(() => {
|
|
(global as any).triggerProps = null;
|
|
});
|
|
|
|
it('ConfigProvider button style', () => {
|
|
const { container } = render(
|
|
<ConfigProvider>
|
|
<Button style={{ fontSize: '14px' }} />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
const item = container.querySelector('button') as HTMLElement;
|
|
expect(getComputedStyle(item)?.fontSize).toBe('14px');
|
|
});
|
|
|
|
it('ConfigProvider button className', () => {
|
|
const { container } = render(
|
|
<ConfigProvider>
|
|
<Button className="custom-class" />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(container.querySelector('button')?.className.includes('custom-class')).toBe(true);
|
|
});
|
|
|
|
it('ConfigProvider button styles', () => {
|
|
const { container } = render(
|
|
<ConfigProvider button={{ styles: { icon: { fontSize: 14 } } }}>
|
|
<Button icon={<SearchOutlined />} />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
const item = container.querySelector('.ant-btn-icon') as HTMLElement;
|
|
expect(getComputedStyle(item)?.fontSize).toBe('14px');
|
|
});
|
|
|
|
it('ConfigProvider button classNames', () => {
|
|
const { container } = render(
|
|
<ConfigProvider button={{ classNames: { icon: 'icon-custom-class' } }}>
|
|
<Button icon={<SearchOutlined />} />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(container.querySelector('.ant-btn-icon')?.className.includes('custom-class')).toBe(true);
|
|
});
|
|
});
|