mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-12 12:23:08 +08:00
Add test case for Checkbox
This commit is contained in:
parent
69b5acb45f
commit
9eee9f5dcd
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
import { shallow, mount } from 'enzyme';
|
||||||
import Checkbox from '..';
|
import Checkbox from '..';
|
||||||
|
|
||||||
describe('Checkbox', () => {
|
describe('Checkbox', () => {
|
||||||
@ -20,4 +20,19 @@ describe('Checkbox', () => {
|
|||||||
wrapper.simulate('mouseleave');
|
wrapper.simulate('mouseleave');
|
||||||
expect(onMouseLeave).toHaveBeenCalled();
|
expect(onMouseLeave).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('CheckGroup should work', () => {
|
||||||
|
const onChange = jest.fn();
|
||||||
|
const wrapper = mount(
|
||||||
|
<Checkbox.Group options={['Apple', 'Pear', 'Orange']} onChange={onChange} />
|
||||||
|
);
|
||||||
|
wrapper.find('.ant-checkbox-input').at(0).simulate('change');
|
||||||
|
expect(onChange).toBeCalledWith(['Apple']);
|
||||||
|
wrapper.find('.ant-checkbox-input').at(1).simulate('change');
|
||||||
|
expect(onChange).toBeCalledWith(['Apple', 'Pear']);
|
||||||
|
wrapper.find('.ant-checkbox-input').at(2).simulate('change');
|
||||||
|
expect(onChange).toBeCalledWith(['Apple', 'Pear', 'Orange']);
|
||||||
|
wrapper.find('.ant-checkbox-input').at(1).simulate('change');
|
||||||
|
expect(onChange).toBeCalledWith(['Apple', 'Orange']);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user