We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c95b6f commit 2fe2f84Copy full SHA for 2fe2f84
js-tests/js-tests.jsx
@@ -63,7 +63,7 @@ function xmlEqual(x1, x2) {
63
&& Object.keys(x1).every(k => x1[k] === x2[k])
64
// Test children for equality
65
&& x1.children.length === x2.children.length
66
- && x1.children.every((child, i) => markupEqual(child, x2.children[i]))
+ && x1.children.every((child, i) => xmlEqual(child, x2.children[i]))
67
}
68
69
describe('window.reactR', () => {
0 commit comments