mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
23 lines
841 B
JavaScript
23 lines
841 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import InputNumber from '..';
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('InputNumber', () => {
|
|
focusTest(InputNumber, true);
|
|
mountTest(InputNumber);
|
|
rtlTest(InputNumber);
|
|
|
|
// https://github.com/ant-design/ant-design/issues/13896
|
|
it('should return null when blur a empty input number', () => {
|
|
const onChange = jest.fn();
|
|
const wrapper = mount(<InputNumber defaultValue="1" onChange={onChange} />);
|
|
wrapper.find('input').simulate('change', { target: { value: '' } });
|
|
expect(onChange).toHaveBeenLastCalledWith('');
|
|
wrapper.find('input').simulate('blur');
|
|
expect(onChange).toHaveBeenLastCalledWith(null);
|
|
});
|
|
});
|