Skip to content
Snippets Groups Projects
Commit 501d2df4 authored by Clement Ho's avatar Clement Ho
Browse files

Add explicit test to test resolved discussion toggle content

parent 9ac5338b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -88,14 +88,24 @@ feature 'Diff notes resolve', :js do
end
end
 
it 'hides resolved discussion' do
page.within '.diff-content' do
click_button 'Resolve discussion'
describe 'resolved discussion' do
before do
page.within '.diff-content' do
click_button 'Resolve discussion'
end
visit_merge_request
end
 
visit_merge_request
it 'hides when resolve discussion is clicked' do
expect(page).to have_selector('.discussion-body', visible: false)
end
 
expect(page).to have_selector('.discussion-body', visible: false)
it 'shows resolved discussion when toggled' do
find(".timeline-content .discussion[data-discussion-id='#{note.discussion_id}'] .discussion-toggle-button").click
expect(page.find(".timeline-content #note_#{note.noteable_id}")).to be_visible
end
end
 
it 'allows user to resolve from reply form without a comment' do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment