You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { SmileOutlined } from '@ant-design/icons';
|
|
import IconContext from '@ant-design/icons/lib/components/Context';
|
|
import ConfigProvider from '..';
|
|
|
|
describe('ConfigProvider.Icon', () => {
|
|
beforeEach(() => {
|
|
// eslint-disable-next-line jest/no-standalone-expect
|
|
expect(document.querySelectorAll('style')).toHaveLength(0);
|
|
});
|
|
|
|
afterEach(() => {
|
|
document.querySelectorAll('style').forEach(style => {
|
|
style.parentNode.removeChild(style);
|
|
});
|
|
});
|
|
|
|
it('basic', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider iconPrefixCls="bamboo" csp={{ nonce: 'light' }}>
|
|
<SmileOutlined />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
const styleNode = document.querySelector('style');
|
|
|
|
expect(wrapper.exists('.bamboo-smile')).toBeTruthy();
|
|
expect(styleNode.nonce).toEqual('light');
|
|
});
|
|
|
|
it('nest', () => {
|
|
const Checker = () => {
|
|
const { csp } = React.useContext(IconContext);
|
|
return <div id="csp">{csp.nonce}</div>;
|
|
};
|
|
|
|
const wrapper = mount(
|
|
<ConfigProvider iconPrefixCls="bamboo" csp={{ nonce: 'light' }}>
|
|
<ConfigProvider>
|
|
<SmileOutlined />
|
|
<Checker />
|
|
</ConfigProvider>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
const styleNode = document.querySelector('style');
|
|
|
|
expect(wrapper.exists('.bamboo-smile')).toBeTruthy();
|
|
expect(styleNode.nonce).toEqual('light');
|
|
expect(wrapper.find('#csp').text()).toEqual('light');
|
|
});
|
|
});
|
|
|