diff --git a/test/unit/components/compose-comment.test.jsx b/test/unit/components/compose-comment.test.jsx index 6b40fee15..293abb3d7 100644 --- a/test/unit/components/compose-comment.test.jsx +++ b/test/unit/components/compose-comment.test.jsx @@ -502,15 +502,4 @@ describe('Compose Comment test', () => { commentInstance.setState({muteType: 'spaghetti'}); expect(commentInstance.getMuteMessageInfo().commentType).toBe('comment.type.general'); }); - - // test('Show feedback link when comment is initially rejected', () => { - // const component = getComposeCommentWrapper({}); - // const commentInstance = component.instance(); - // commentInstance.setState({error: 'isBad', mute_status: {}}); - // component.update(); - // expect(component.find('FlexRow.compose-error-row').exists()).toEqual(true); - // // Buttons stay enabled when comment rejected for non-mute reasons - // expect(component.find('Button.compose-post').props().disabled).toBe(false); - // expect(component.find('Button.compose-cancel').props().disabled).toBe(false); - // }); });