diff --git a/src/stepper/__test__/index.test.jsx b/src/stepper/__test__/index.test.jsx index 5b0bb735f..1f6648ec9 100644 --- a/src/stepper/__test__/index.test.jsx +++ b/src/stepper/__test__/index.test.jsx @@ -189,7 +189,7 @@ describe('stepper', () => { const wrapper = mount(); const $input = wrapper.find('.t-stepper__input').element; - const inputValue = 12; + const inputValue = '12'; await simulateEvent($input, inputValue, 'input'); expect(value.value).toBe(inputValue); });