justin-do-it-react icon indicating copy to clipboard operation
justin-do-it-react copied to clipboard

221p 오타

Open choyeah opened this issue 4 years ago • 0 comments

// 기존 expect(changeStub).toHaveBeenCalledWith('required', true); input.simulate('click', { target: { checked: false } }); expect(changeStub).toHaveBeenCalledWith('required', false);

// 수정 expect(changeStub).toHaveBeenCalledWith('test_name', true); // <-- input.simulate('click', { target: { checked: false } }); expect(changeStub).toHaveBeenCalledWith('test_name', false); // <--

choyeah avatar May 15 '20 13:05 choyeah