mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
29 lines
990 B
JavaScript
29 lines
990 B
JavaScript
import React from 'react';
|
|
import TestUtils from 'react-addons-test-utils';
|
|
|
|
jest.dontMock('../components/popover/index');
|
|
|
|
const Popover = require('../components/popover/index');
|
|
|
|
describe('Popover', function() {
|
|
it('should show overlay when trigger is clicked', () => {
|
|
const popover = TestUtils.renderIntoDocument(
|
|
<Popover overlay="console.log('hello world')" title="code" trigger="click">
|
|
<a href="#">show me your code</a>
|
|
</Popover>
|
|
);
|
|
|
|
expect(popover.getPopupDomNode()).toBe(undefined);
|
|
|
|
TestUtils.Simulate.click(
|
|
TestUtils.findRenderedDOMComponentWithTag(popover, 'a')
|
|
);
|
|
|
|
const popup = popover.getPopupDomNode();
|
|
expect(popup).not.toBe(undefined);
|
|
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-content".*?>console\.log\('hello world'\)<\/div>/);
|
|
});
|
|
});
|