mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
43d7b9ca92
* chore: static config of theme * chore: static all method * test: add test case * docs: comment * docs: more info * test: update snapshot * test: fix test logic
36 lines
890 B
TypeScript
36 lines
890 B
TypeScript
import ConfigProvider, { globalConfig } from '..';
|
|
|
|
describe('ConfigProvider.config', () => {
|
|
it('rootPrefixCls', () => {
|
|
expect(globalConfig().getRootPrefixCls()).toEqual('ant');
|
|
|
|
ConfigProvider.config({
|
|
prefixCls: 'light',
|
|
});
|
|
expect(globalConfig().getRootPrefixCls()).toEqual('light');
|
|
});
|
|
|
|
it('theme', () => {
|
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
expect(globalConfig().getTheme()).toBeFalsy();
|
|
|
|
ConfigProvider.config({
|
|
theme: {
|
|
infoColor: 'red',
|
|
},
|
|
});
|
|
|
|
expect(errSpy).toHaveBeenCalledWith(
|
|
'Warning: [antd: ConfigProvider] `config` of css variable theme is not work in v5. Please use new `theme` config instead.',
|
|
);
|
|
|
|
ConfigProvider.config({
|
|
theme: {
|
|
token: {},
|
|
},
|
|
});
|
|
|
|
expect(globalConfig().getTheme()).toEqual({ token: {} });
|
|
});
|
|
});
|