Skip to content

Commit

Permalink
Prettier updates
Browse files Browse the repository at this point in the history
  • Loading branch information
GordyD committed Nov 19, 2017
1 parent e773fa4 commit c98f56b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,11 @@ describe('ReactDOMComponentTree', () => {

it('finds instance from node to stop rendering over other react rendered components', () => {
spyOn(console, 'error');
const component = <div><span>Hello</span></div>;
const component = (
<div>
<span>Hello</span>
</div>
);
const anotherComponent = <div />;
const container = document.createElement('div');
const instance = ReactDOM.render(component, container);
Expand Down

0 comments on commit c98f56b

Please sign in to comment.