Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_spec.rb « reportable_note « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21e96f6f103119aade1fc4beecd89e839c039403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'spec_helper'

describe 'Reportable note on issue', :js do
  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let(:issue) { create(:issue, project: project) }
  let!(:note) { create(:note_on_issue, noteable: issue, project: project) }

  before do
    project.add_master(user)
    sign_in(user)

    visit project_issue_path(project, issue)
  end

  it_behaves_like 'reportable note'
end