ant-design/components/popover/__tests__/index.test.js
2017-10-09 19:18:04 +08:00

24 lines
716 B
JavaScript

import React from 'react';
import { mount } from 'enzyme';
import Popover from '..';
describe('Popover', () => {
it('should show overlay when trigger is clicked', () => {
const popover = mount(
<Popover content="console.log('hello world')" title="code" trigger="click">
<span>show me your code</span>
</Popover>
);
expect(popover.instance().getPopupDomNode()).toBe(null);
popover.find('span').simulate('click');
const popup = popover.instance().getPopupDomNode();
expect(popup).not.toBe(null);
expect(popup.className).toContain('ant-popover-placement-top');
expect(popup.innerHTML).toMatchSnapshot();
expect(popup.innerHTML).toMatchSnapshot();
});
});