Skip to content

Commit 21b80bd

Browse files
committed
fix lint
1 parent 9bf04b1 commit 21b80bd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/@react-aria/utils/test/shadowTreeWalker.test.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,10 @@ describe('ShadowTreeWalker', () => {
276276
describe.skip('speed test', () => {
277277
let Component = (props) => {
278278
if (props.depth === 0) {
279-
return <div data-testid="hello">hello</div>
279+
return <div data-testid="hello">hello</div>;
280280
}
281-
return <div><Component depth={props.depth -1}/></div>
282-
}
281+
return <div><Component depth={props.depth - 1} /></div>;
282+
};
283283
it.each`
284284
Name | createTreeWalker
285285
${'native'} | ${() => document.createTreeWalker(document.body, NodeFilter.SHOW_ALL)}
@@ -313,6 +313,7 @@ describe.skip('speed test', () => {
313313
});
314314
});
315315

316+
316317
// describe('checking if node is contained', () => {
317318
// let user;
318319
// beforeAll(() => {

0 commit comments

Comments
 (0)