import React from 'react';
import { mount } from 'enzyme';
import ConfigProvider from '..';
import Button from '../../button';
import Table from '../../table';
import Input from '../../input';
import mountTest from '../../../tests/shared/mountTest';
describe('ConfigProvider', () => {
mountTest(() => (
));
it('Content Security Policy', () => {
const csp = { nonce: 'test-antd' };
const wrapper = mount(
,
);
expect(wrapper.find('Wave').instance().csp).toBe(csp);
});
it('autoInsertSpaceInButton', () => {
const wrapper = mount(
,
);
expect(wrapper.find('Button').text()).toBe('确定');
});
it('renderEmpty', () => {
const wrapper = mount(
empty placeholder
}>
,
);
expect(wrapper.text()).toContain('empty placeholder');
});
it('nest prefixCls', () => {
const wrapper = mount(
,
);
expect(wrapper.find('button').props().className).toEqual('bamboo-btn');
});
it('input autoComplete', () => {
const wrapper = mount(
,
);
expect(wrapper.find('input').props().autoComplete).toEqual('off');
});
});