forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix onVisibleChange arguments error (ant-design#4589)
* fix onVisibleChange arguments error * add test * trigger travis
- Loading branch information
1 parent
c09cf95
commit 6e33285
Showing
2 changed files
with
64 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import React from 'react'; | ||
import { mount } from 'enzyme'; | ||
import Tooltip from '..'; | ||
|
||
describe('Tooltip', () => { | ||
it('check `onVisibleChange` arguments', () => { | ||
const onVisibleChange = jest.fn(); | ||
|
||
const wrapper = mount( | ||
<Tooltip | ||
title="" | ||
mouseEnterDelay={0} | ||
mouseLeaveDelay={0} | ||
onVisibleChange={onVisibleChange} | ||
> | ||
<div>Hello world!</div> | ||
</Tooltip> | ||
); | ||
|
||
// `title` is empty. | ||
const div = wrapper.find('div').at(0); | ||
div.simulate('mouseenter'); | ||
expect(onVisibleChange).not.toHaveBeenCalled(); | ||
expect(wrapper.ref('tooltip').prop('visible')).toBe(false); | ||
|
||
div.simulate('mouseleave'); | ||
expect(onVisibleChange).not.toHaveBeenCalled(); | ||
expect(wrapper.ref('tooltip').prop('visible')).toBe(false); | ||
|
||
|
||
// update `title` value. | ||
wrapper.setProps({ title: 'Have a nice day!' }); | ||
wrapper.simulate('mouseenter'); | ||
expect(onVisibleChange).toBeCalledWith(true); // mock.calls.length++ | ||
expect(wrapper.ref('tooltip').prop('visible')).toBe(true); | ||
|
||
wrapper.simulate('mouseleave'); | ||
expect(onVisibleChange).toBeCalledWith(false); // mock.calls.length++ | ||
expect(wrapper.ref('tooltip').prop('visible')).toBe(false); | ||
|
||
|
||
// add `visible` props. | ||
wrapper.setProps({ visible: false }); | ||
wrapper.simulate('mouseenter'); | ||
expect(onVisibleChange.mock.calls.length).toBe(2); | ||
expect(wrapper.ref('tooltip').prop('visible')).toBe(false); | ||
|
||
wrapper.simulate('mouseleave'); | ||
expect(onVisibleChange.mock.calls.length).toBe(2); | ||
expect(wrapper.ref('tooltip').prop('visible')).toBe(false); | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters