summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/features/comments_on_merge_request_files_shared_examples.rb
blob: f24e47f4638ace2a07e5d1c4980791a588116818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

shared_examples 'comment on merge request file' do
  it 'adds a comment' do
    click_diff_line(find("[id='#{sample_commit.line_code}']"))

    page.within('.js-discussion-note-form') do
      fill_in(:note_note, with: 'Line is wrong')
      click_button('Comment')
    end

    wait_for_requests

    page.within('.notes_holder') do
      expect(page).to have_content('Line is wrong')
    end

    visit(merge_request_path(merge_request))

    page.within('.notes .discussion') do
      expect(page).to have_content("#{user.name} #{user.to_reference} started a thread")
      expect(page).to have_content(sample_commit.line_code_path)
      expect(page).to have_content('Line is wrong')
    end

    page.within('.notes-tab .badge') do
      expect(page).to have_content('1')
    end
  end
end