56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
| import { mount } from '@vue/test-utils';
 | |
| import ConfigProvider from '..';
 | |
| import Button from '../../button';
 | |
| import mountTest from '../../../tests/shared/mountTest';
 | |
| import { sleep } from '../../../tests/utils';
 | |
| 
 | |
| describe('ConfigProvider', () => {
 | |
|   mountTest({
 | |
|     render() {
 | |
|       return (
 | |
|         <div>
 | |
|           <ConfigProvider>
 | |
|             <div />
 | |
|           </ConfigProvider>
 | |
|         </div>
 | |
|       );
 | |
|     },
 | |
|   });
 | |
| 
 | |
|   it('Content Security Policy', () => {
 | |
|     const csp = { nonce: 'test-antd' };
 | |
|     const wrapper = mount({
 | |
|       render() {
 | |
|         return (
 | |
|           <ConfigProvider csp={csp}>
 | |
|             <Button ref="button" />
 | |
|           </ConfigProvider>
 | |
|         );
 | |
|       },
 | |
|     });
 | |
|     expect(wrapper.findComponent({ ref: 'button' }).vm.$refs.wave.csp.nonce).toBe(csp.nonce);
 | |
|   });
 | |
| 
 | |
|   it('autoInsertSpaceInButton', async () => {
 | |
|     const wrapper = mount({
 | |
|       data() {
 | |
|         return {
 | |
|           autoInsertSpaceInButton: false,
 | |
|         };
 | |
|       },
 | |
|       render() {
 | |
|         return (
 | |
|           <ConfigProvider autoInsertSpaceInButton={this.autoInsertSpaceInButton}>
 | |
|             <Button ref="button">确定</Button>
 | |
|           </ConfigProvider>
 | |
|         );
 | |
|       },
 | |
|     });
 | |
| 
 | |
|     expect(wrapper.find('.ant-btn').text()).toBe('确定');
 | |
|     wrapper.vm.autoInsertSpaceInButton = true;
 | |
|     await sleep();
 | |
|     expect(wrapper.find('.ant-btn').text()).toBe('确 定');
 | |
|   });
 | |
| });
 |