ant-design/tests/popover.test.js

30 lines
1.0 KiB
JavaScript
Raw Normal View History

jest.unmock('../components/popover/placements');
jest.unmock('../components/popover/index');
jest.unmock('../components/tooltip/index');
2015-11-04 17:15:33 +08:00
import React from 'react';
import TestUtils from 'react-addons-test-utils';
import Popover from '../components/popover/index';
2015-11-04 17:15:33 +08:00
describe('Popover', function() {
it('should show overlay when trigger is clicked', () => {
const popover = TestUtils.renderIntoDocument(
<Popover content="console.log('hello world')" title="code" trigger="click">
<a href="#">show me your code</a>
</Popover>
);
2015-11-04 17:15:33 +08:00
2016-07-07 23:01:43 +08:00
expect(popover.getPopupDomNode()).toBe(null);
2015-11-04 17:15:33 +08:00
TestUtils.Simulate.click(
TestUtils.findRenderedDOMComponentWithTag(popover, 'a')
);
2015-11-04 17:15:33 +08:00
const popup = popover.getPopupDomNode();
2016-07-09 18:30:09 +08:00
expect(popup).not.toBe(null);
expect(popup.className).toContain('ant-popover-placement-top');
expect(popup.innerHTML).toMatch(/<div class="ant-popover-title".*?>code<\/div>/);
expect(popup.innerHTML).toMatch(/<div class="ant-popover-inner-content".*?>console\.log\('hello world'\)<\/div>/);
});
2015-11-04 17:15:33 +08:00
});