Wrap issue report rich text in div

This commit is contained in:
Anton Khorev 2022-06-09 03:46:12 +03:00 committed by Tom Hughes
parent c2b19fa3e8
commit 9936b00d82
2 changed files with 18 additions and 1 deletions

View file

@ -9,7 +9,7 @@
:user => link_to(report.user.display_name, user_path(report.user)), :user => link_to(report.user.display_name, user_path(report.user)),
:updated_at => l(report.updated_at.to_datetime, :format => :friendly) %> :updated_at => l(report.updated_at.to_datetime, :format => :friendly) %>
</p> </p>
<p class="richtext text-break"><%= report.details.to_html %></p> <div class="richtext text-break"><%= report.details.to_html %></div>
</div> </div>
</div> </div>
<hr> <hr>

View file

@ -41,6 +41,23 @@ class IssuesTest < ApplicationSystemTestCase
assert_selector "strong", :text => "with kramdown" assert_selector "strong", :text => "with kramdown"
end end
def test_view_issue_rich_text_container
sign_in_as(create(:moderator_user))
issue = create(:issue, :assigned_role => "moderator")
issue.reports << create(:report, :details => "paragraph one\n\n---\n\nparagraph two")
visit issue_path(issue)
assert_content I18n.t("issues.show.reports", :count => 1)
richtext = find "div.richtext"
richtext_elements = richtext.all "*"
assert_equal 3, richtext_elements.size
assert_equal "p", richtext_elements[0].tag_name
assert_equal "paragraph one", richtext_elements[0].text
assert_equal "hr", richtext_elements[1].tag_name
assert_equal "p", richtext_elements[2].tag_name
assert_equal "paragraph two", richtext_elements[2].text
end
def test_view_issues_with_no_reported_user def test_view_issues_with_no_reported_user
sign_in_as(create(:moderator_user)) sign_in_as(create(:moderator_user))
anonymous_note = create(:note_with_comments) anonymous_note = create(:note_with_comments)