debian-mirror-gitlab/spec/features/reportable_note/issue_spec.rb
2023-07-09 08:55:56 +05:30

21 lines
575 B
Ruby

# 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