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: a18cdf27294d61376cb9c722bc50a062e4448999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Reportable note on issue', :js, feature_category: :team_planning do
  include CookieHelper

  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_maintainer(user)
    sign_in(user)
    set_cookie('new-actions-popover-viewed', 'true')
    visit project_issue_path(project, issue)
  end

  it_behaves_like 'reportable note', 'issue'
end