import React from 'react'; import { mount } from 'enzyme'; import ConfigProvider from '../../config-provider'; import { Modal } from '../..'; import zhCN from '../zh_CN'; class Demo extends React.Component { static defaultProps = {}; componentDidMount() { if (this.props.type === 'dashboard') { Modal.confirm({ title: 'Hello World!' }); } } render() { return
{this.props.type}
; } } describe('Locale Provider demo', () => { it('change type', () => { jest.useFakeTimers(); const BasicExample = () => { const [type, setType] = React.useState(''); return (
setType('about')}> about setType('dashboard')}> dashboard
{type === 'about' && ( )} {type === 'dashboard' && ( )}
); }; const wrapper = mount(); wrapper.find('.about').at(0).simulate('click'); jest.runAllTimers(); wrapper.find('.dashboard').at(0).simulate('click'); jest.runAllTimers(); expect(document.body.querySelectorAll('.ant-btn-primary span')[0].textContent).toBe('确 定'); Modal.destroyAll(); jest.useRealTimers(); }); });