2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
require 'spec_helper'
|
2018-11-20 20:47:30 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'New issue breadcrumb' do
|
2020-03-13 15:44:24 +05:30
|
|
|
let_it_be(:project, reload: true) { create(:project) }
|
2019-02-15 15:39:39 +05:30
|
|
|
let(:user) { project.creator }
|
2018-11-20 20:47:30 +05:30
|
|
|
|
|
|
|
before do
|
2020-07-28 23:09:34 +05:30
|
|
|
stub_feature_flags(vue_issuables_list: false)
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
sign_in(user)
|
2019-02-15 15:39:39 +05:30
|
|
|
visit(new_project_issue_path(project))
|
2018-11-20 20:47:30 +05:30
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
it 'displays link to project issues and new issue' do
|
2018-11-20 20:47:30 +05:30
|
|
|
page.within '.breadcrumbs' do
|
|
|
|
expect(find_link('Issues')[:href]).to end_with(project_issues_path(project))
|
|
|
|
expect(find_link('New')[:href]).to end_with(new_project_issue_path(project))
|
|
|
|
end
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
it 'links to current issue in breadcrubs' do
|
|
|
|
issue = create(:issue, project: project)
|
|
|
|
|
|
|
|
visit project_issue_path(project, issue)
|
|
|
|
|
|
|
|
expect(find('.breadcrumbs-sub-title a')[:href]).to end_with(issue_path(issue))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes award_emoji from comment count' do
|
|
|
|
issue = create(:issue, author: user, assignees: [user], project: project, title: 'foobar')
|
|
|
|
create(:award_emoji, awardable: issue)
|
|
|
|
|
|
|
|
visit project_issues_path(project, assignee_id: user.id)
|
|
|
|
|
|
|
|
expect(page).to have_content 'foobar'
|
|
|
|
expect(page.all('.no-comments').first.text).to eq "0"
|
|
|
|
end
|
2018-11-20 20:47:30 +05:30
|
|
|
end
|