Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
snowystinger committed Jan 16, 2025
1 parent 9bf04b1 commit 21b80bd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/@react-aria/utils/test/shadowTreeWalker.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,10 @@ describe('ShadowTreeWalker', () => {
describe.skip('speed test', () => {
let Component = (props) => {
if (props.depth === 0) {
return <div data-testid="hello">hello</div>
return <div data-testid="hello">hello</div>;
}
return <div><Component depth={props.depth -1}/></div>
}
return <div><Component depth={props.depth - 1} /></div>;
};
it.each`
Name | createTreeWalker
${'native'} | ${() => document.createTreeWalker(document.body, NodeFilter.SHOW_ALL)}
Expand Down Expand Up @@ -313,6 +313,7 @@ describe.skip('speed test', () => {
});
});


// describe('checking if node is contained', () => {
// let user;
// beforeAll(() => {
Expand Down

0 comments on commit 21b80bd

Please sign in to comment.