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 ( <>
); }, }); it('Content Security Policy', () => { const csp = { nonce: 'test-antd' }; const wrapper = mount({ render() { return ( ); }, }); expect(wrapper.find('.ant-btn').text()).toBe('确定'); wrapper.vm.autoInsertSpaceInButton = true; await sleep(); expect(wrapper.find('.ant-btn').text()).toBe('确 定'); }); });