Skip to content

Commit

Permalink
yarn prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sammy-SC committed Nov 16, 2022
1 parent 71a6323 commit 55e2c29
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions packages/react-dom/src/__tests__/refs-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,31 +581,20 @@ describe('refs return clean up function', () => {
return cleanUp;
}

ReactDOM.render(
<div
ref={_onRefChange}
/>,
container,
);
ReactDOM.render(<div ref={_onRefChange} />, container);

expect(setup).toHaveBeenCalledTimes(1);
expect(cleanUp).toHaveBeenCalledTimes(0);

ReactDOM.render(
<div
className="niceClassName"
ref={_onRefChange}
/>,
<div className="niceClassName" ref={_onRefChange} />,
container,
);

expect(setup).toHaveBeenCalledTimes(1);
expect(cleanUp).toHaveBeenCalledTimes(0);

ReactDOM.render(
<div />,
container,
);
ReactDOM.render(<div />, container);

expect(setup).toHaveBeenCalledTimes(1);
expect(cleanUp).toHaveBeenCalledTimes(1);
Expand Down

0 comments on commit 55e2c29

Please sign in to comment.