import React from 'react'; import { mount } from 'enzyme'; import { ArrowUpOutlined, ArrowDownOutlined } from '@ant-design/icons'; 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, { refFocus: 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(); wrapper.find('input').simulate('change', { target: { value: '' } }); expect(onChange).toHaveBeenLastCalledWith(null); }); it('should call onStep when press up or down button', () => { const onStep = jest.fn(); const wrapper = mount(); wrapper.find('.ant-input-number-handler-up').simulate('mousedown'); expect(onStep).toBeCalledTimes(1); expect(onStep).toHaveBeenLastCalledWith(2, { offset: 1, type: 'up' }); wrapper.find('.ant-input-number-handler-down').simulate('mousedown'); expect(onStep).toBeCalledTimes(2); expect(onStep).toHaveBeenLastCalledWith(1, { offset: 1, type: 'down' }); }); it('renders correctly when controls is boolean', () => { expect(mount().render()).toMatchSnapshot(); }); it('renders correctly when controls is {}', () => { expect(mount().render()).toMatchSnapshot(); }); it('renders correctly when controls has custom upIcon and downIcon', () => { const wrapper = mount( , downIcon: , }} />, ); expect(wrapper.render()).toMatchSnapshot(); }); it('should support className', () => { const wrapper = mount( , downIcon: , }} />, ); expect(wrapper.find('.anticon-arrow-up').getDOMNode().className.includes('my-class-name')).toBe( true, ); expect( wrapper.find('.anticon-arrow-down').getDOMNode().className.includes('my-class-name'), ).toBe(true); }); });