Skip to content

Commit c052922

Browse files
committed
Collapse whitespace from :text but not :html
1 parent 4a37322 commit c052922

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/rails/dom/testing/assertions/selector_assertions/html_selector.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,16 @@ def filter(matches)
5151

5252
content_mismatch = nil
5353
text_matches = tests.has_key?(:text)
54+
html_matches = tests.has_key?(:html)
5455
regex_matching = match_with.is_a?(Regexp)
5556

5657
remaining = matches.reject do |match|
5758
# Preserve markup with to_s for html elements
58-
content = text_matches ? match.text : match.children.to_s
59+
content = text_matches ? match.text : match.inner_html
5960

6061
content.strip! unless NO_STRIP.include?(match.name)
6162
content.delete_prefix!("\n") if text_matches && match.name == "textarea"
63+
collapse_html_whitespace!(content) unless NO_STRIP.include?(match.name) || html_matches
6264

6365
next if regex_matching ? (content =~ match_with) : (content == match_with)
6466
content_mismatch ||= diff(match_with, content)
@@ -138,6 +140,10 @@ def extract_equality_tests(refute)
138140

139141
comparisons
140142
end
143+
144+
def collapse_html_whitespace!(text)
145+
text.gsub!(/\s+/, " ")
146+
end
141147
end
142148
end
143149
end

0 commit comments

Comments
 (0)