Skip to content

Commit

Permalink
Merge 307f13e into 4618891
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Aug 5, 2019
2 parents 4618891 + 307f13e commit 287625c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/browser/render.test.js
Expand Up @@ -1083,7 +1083,7 @@ describe('render()', () => {
it('should notice prop changes on replaceNode', () => {
const childA = scratch.querySelector('#a');
render(<div id="a" className="b" />, scratch, childA);
expect(scratch.innerHTML).to.equal('<div id="a" class="b"></div><div id="b"></div><div id="c"></div>');
expect(sortAttributes(String(scratch.innerHTML))).to.equal(sortAttributes('<div id="a" class="b"></div><div id="b"></div><div id="c"></div>'));
});

it('should unmount existing components', () => {
Expand Down

0 comments on commit 287625c

Please sign in to comment.