You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While writing unit tests for dom traversal I noticed that text nodes get dumped as <#text></<#text> (based on the nodeName for TextNode's [spec]).
The nodeValue (text content) is not dumped. This can make it rather difficult to figure out what went wrong as the jsDump outputs are the same for "Actual" and "Result" (whereas equal, comparing them by reference, returns false)
The text was updated successfully, but these errors were encountered:
While writing unit tests for dom traversal I noticed that text nodes get dumped as
<#text></<#text>
(based on thenodeName
for TextNode's [spec]).The nodeValue (text content) is not dumped. This can make it rather difficult to figure out what went wrong as the jsDump outputs are the same for "Actual" and "Result" (whereas equal, comparing them by reference, returns false)
The text was updated successfully, but these errors were encountered: