ant-design/components/input-number/__tests__/index.test.js

19 lines
675 B
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
2018-03-23 19:19:29 +08:00
import InputNumber from '..';
import focusTest from '../../../tests/shared/focusTest';
describe('InputNumber', () => {
focusTest(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);
});
});