import React from 'react'; import Popover from '..'; import mountTest from '../../../tests/shared/mountTest'; import { render, fireEvent } from '../../../tests/utils'; import ConfigProvider from '../../config-provider'; describe('Popover', () => { mountTest(Popover); it('should show overlay when trigger is clicked', () => { const ref = React.createRef(); const popover = render( show me your code , ); expect(ref.current.getPopupDomNode()).toBe(null); expect(popover.container.querySelector('.ant-popover-inner-content')).toBeFalsy(); fireEvent.click(popover.container.querySelector('span')!); expect(popover.container.querySelector('.ant-popover-inner-content')).toBeTruthy(); }); it('shows content for render functions', () => { const renderTitle = () => 'some-title'; const renderContent = () => 'some-content'; const ref = React.createRef(); const popover = render( show me your code , ); fireEvent.click(popover.container.querySelector('span')!); const popup = ref.current.getPopupDomNode(); expect(popup).not.toBe(null); expect(popup.innerHTML).toContain('some-title'); expect(popup.innerHTML).toContain('some-content'); expect(popup.innerHTML).toMatchSnapshot(); }); it('handles empty title/content props safely', () => { const ref = React.createRef(); const popover = render( show me your code , ); fireEvent.click(popover.container.querySelector('span')!); const popup = ref.current.getPopupDomNode(); expect(popup).toBe(null); }); it('should not render popover when the title & content props is empty', () => { const ref = React.createRef(); const popover = render( show me your code , ); fireEvent.click(popover.container.querySelector('span')!); const popup = ref.current.getPopupDomNode(); expect(popup).toBe(null); }); it('props#overlay do not warn anymore', () => { const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {}); const overlay = jest.fn(); render( show me your code , ); expect(errorSpy).not.toHaveBeenCalled(); expect(overlay).not.toHaveBeenCalled(); }); it(`should be rendered correctly in RTL direction`, () => { const wrapper = render( show me your Rtl demo , ); expect(Array.from(wrapper.container.children)).toMatchSnapshot(); }); });