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.
30 lines
795 B
30 lines
795 B
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import ConfigProvider from '..';
|
|
import Button from '../../button';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
|
|
describe('ConfigProvider', () => {
|
|
mountTest(() => <ConfigProvider><div /></ConfigProvider>);
|
|
|
|
it('Content Security Policy', () => {
|
|
const csp = { nonce: 'test-antd' };
|
|
const wrapper = mount(
|
|
<ConfigProvider csp={csp}>
|
|
<Button />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.find('Wave').instance().csp).toBe(csp);
|
|
});
|
|
|
|
it('autoInsertSpaceInButton', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider autoInsertSpaceInButton={false}>
|
|
<Button>确定</Button>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.find('Button').text()).toBe('确定');
|
|
});
|
|
});
|
|
|