You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import test from 'ava';
|
|
|
|
import React from 'react';
|
|
|
|
import Popover from '../components/popover'
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
|
|
|
|
test('should show overlay when trigger is clicked', (t) => {
|
|
|
|
const popover = mount(
|
|
|
|
<Popover content="console.log('hello world')" title="code" trigger="click">
|
|
|
|
<a href="#">show me your code</a>
|
|
|
|
</Popover>
|
|
|
|
);
|
|
|
|
|
|
|
|
t.is(popover.instance().getPopupDomNode(), undefined);
|
|
|
|
|
|
|
|
popover.find('a').simulate('click');
|
|
|
|
|
|
|
|
const popup = popover.instance().getPopupDomNode();
|
|
|
|
t.truthy(popup);
|
|
|
|
t.true(popup.className.indexOf('ant-popover-placement-top') > 0);
|
|
|
|
t.is(popup.innerHTML, '<div class="ant-popover-content"><div class="ant-popover-arrow"></div><div class="ant-popover-inner">code</div></div>');
|
|
|
|
});
|