import React from 'react'; import { mount } from 'enzyme'; import Modal from '..'; import Button from '../../button'; jest.mock('rc-util/lib/Portal'); describe('Modal.hook', () => { it('hooks support context', () => { jest.useFakeTimers(); const Context = React.createContext('light'); let instance; const Demo = () => { const [modal, contextHolder] = Modal.useModal(); return (