From 3d7d213e3ddc5bf4f71d536f31677b768aa3b7c0 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 4 May 2019 20:56:59 +0300 Subject: MessageInput: clear body on submit correctly react-use-form-state 0.10 feature --- .../src/components/__tests__/MessageInput-test.js | 34 ++++++++++++---------- 1 file changed, 18 insertions(+), 16 deletions(-) (limited to 'vnext/src/components/__tests__/MessageInput-test.js') diff --git a/vnext/src/components/__tests__/MessageInput-test.js b/vnext/src/components/__tests__/MessageInput-test.js index 77a71d77..7ac69ed0 100644 --- a/vnext/src/components/__tests__/MessageInput-test.js +++ b/vnext/src/components/__tests__/MessageInput-test.js @@ -12,11 +12,11 @@ const testMessage = { to: {} }; -window.matchMedia = window.matchMedia || function() { +window.matchMedia = window.matchMedia || function () { return { matches: true, - addListener: function() { }, - removeListener: function() { } + addListener: function () { }, + removeListener: function () { } }; }; @@ -59,18 +59,23 @@ it('Submits on ctrl-enter', () => { }); }); let textarea = messageInput.root.findByType('textarea'); - textarea.props.onKeyPress({ - charCode: 13, - which: 13, - keyCode: 13, - ctrlKey: false + act(() => { + + textarea.props.onKeyPress({ + charCode: 13, + which: 13, + keyCode: 13, + ctrlKey: false + }); }); expect(onSend).toHaveBeenCalledTimes(0); - textarea.props.onKeyPress({ - charCode: 13, - which: 13, - keyCode: 13, - ctrlKey: true + act(() => { + textarea.props.onKeyPress({ + charCode: 13, + which: 13, + keyCode: 13, + ctrlKey: true + }); }); expect(onSend).toHaveBeenCalledTimes(1); expect(textarea.props.value).toEqual(''); @@ -83,11 +88,8 @@ it('Submits on ctrl-enter', () => { }); }); expect(textarea.props.value).toEqual(' '); - /* - TODO: waiting for react-use-form-state reset act(() => { messageInput.root.findByType('form').props.onSubmit({ event: {} }); }); expect(textarea.props.value).toEqual('', 'Value should be cleared after submit'); - */ }); -- cgit v1.2.3