@@ -142,7 +142,7 @@ describe('Update Avatar props', () => {
142142 import Avatar from '@atlaskit/avatar';
143143
144144 const App = () => {
145- return <Avatar />;
145+ return ( <Avatar />) ;
146146 }
147147 ` ,
148148 'should remove all deleted props' ,
@@ -170,7 +170,7 @@ describe('Update Avatar props', () => {
170170 import Foo from '@atlaskit/avatar';
171171
172172 const App = () => {
173- return <Foo />;
173+ return ( <Foo />) ;
174174 }
175175 ` ,
176176 'should remove all deleted props with aliased import name' ,
@@ -194,7 +194,7 @@ describe('Update Avatar props', () => {
194194 import Avatar from '@atlaskit/avatar';
195195
196196 const App = () => {
197- return <Avatar />;
197+ return ( <Avatar />) ;
198198 }
199199 ` ,
200200 'should remove enableTooltip when false' ,
@@ -256,7 +256,7 @@ describe('Update AvatarItem props', () => {
256256 import Avatar, { AvatarItem } from '@atlaskit/avatar';
257257
258258 const App = () => {
259- return <AvatarItem />;
259+ return ( <AvatarItem />) ;
260260 }
261261 ` ,
262262 'should remove all deleted props' ,
@@ -284,7 +284,7 @@ describe('Update AvatarItem props', () => {
284284 import { AvatarItem as Foo } from '@atlaskit/avatar';
285285
286286 const App = () => {
287- return <Foo />;
287+ return ( <Foo />) ;
288288 }
289289 ` ,
290290 'should remove all deleted props with aliased import' ,
@@ -308,7 +308,7 @@ describe('Update AvatarItem props', () => {
308308 import { AvatarItem } from '@atlaskit/avatar';
309309
310310 const App = () => {
311- return <AvatarItem />;
311+ return ( <AvatarItem />) ;
312312 }
313313 ` ,
314314 'should remove enableTextTruncate when defaulted to true' ,
@@ -333,9 +333,9 @@ describe('Update AvatarItem props', () => {
333333
334334 const App = () => {
335335 return (
336- <AvatarItem
336+ ( <AvatarItem
337337 isTruncationDisabled
338- />
338+ />)
339339 );
340340 }
341341 ` ,
@@ -365,9 +365,9 @@ describe('Update AvatarItem props', () => {
365365
366366 const App = () => {
367367 return (
368- <AvatarItem
368+ ( <AvatarItem
369369 isTruncationDisabled={!value}
370- />
370+ />)
371371 );
372372 }
373373 ` ,
@@ -399,9 +399,9 @@ describe('Update AvatarItem props', () => {
399399
400400 const App = () => {
401401 return (
402- <AvatarItem
402+ ( <AvatarItem
403403 isTruncationDisabled={!(foo && bar)}
404- />
404+ />)
405405 );
406406 }
407407 ` ,
@@ -426,7 +426,7 @@ describe('Update AvatarItem props', () => {
426426 import Avatar, { AvatarItem } from '@atlaskit/avatar';
427427
428428 const App = () => {
429- return <AvatarItem />;
429+ return ( <AvatarItem />) ;
430430 }
431431 ` ,
432432 'should remove isTruncationDisabled when true' ,
0 commit comments