Skip to content

Commit

Permalink
Merge pull request #982 from decadef20/master
Browse files Browse the repository at this point in the history
fix cloneElement test
  • Loading branch information
developit committed Aug 17, 2018
2 parents 30b13c4 + 084ed46 commit f98df92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/browser/components.js
Expand Up @@ -115,7 +115,7 @@ describe('Components', () => {
function Comp () {}
let instance = <Comp/>;
let clone = cloneElement(instance);
expect(clone.prototype).to.equal(instance.prototype);
expect(clone.nodeName.prototype).to.equal(instance.nodeName.prototype);
});

it('should render string', () => {
Expand Down

0 comments on commit f98df92

Please sign in to comment.