File tree 1 file changed +7
-1
lines changed
lib/rails/dom/testing/assertions/selector_assertions
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,16 @@ def filter(matches)
51
51
52
52
content_mismatch = nil
53
53
text_matches = tests . has_key? ( :text )
54
+ html_matches = tests . has_key? ( :html )
54
55
regex_matching = match_with . is_a? ( Regexp )
55
56
56
57
remaining = matches . reject do |match |
57
58
# 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
59
60
60
61
content . strip! unless NO_STRIP . include? ( match . name )
61
62
content . delete_prefix! ( "\n " ) if text_matches && match . name == "textarea"
63
+ collapse_html_whitespace! ( content ) unless NO_STRIP . include? ( match . name ) || html_matches
62
64
63
65
next if regex_matching ? ( content =~ match_with ) : ( content == match_with )
64
66
content_mismatch ||= diff ( match_with , content )
@@ -138,6 +140,10 @@ def extract_equality_tests(refute)
138
140
139
141
comparisons
140
142
end
143
+
144
+ def collapse_html_whitespace! ( text )
145
+ text . gsub! ( /\s +/ , " " )
146
+ end
141
147
end
142
148
end
143
149
end
You can’t perform that action at this time.
0 commit comments