File tree 1 file changed +2
-2
lines changed
packages/@react-stately/data/test
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -709,7 +709,7 @@ describe('useTreeData', function () {
709
709
expect ( result . current . items . length ) . toEqual ( 2 ) ;
710
710
} ) ;
711
711
712
- it . only ( 'should move an item to a different level after the target' , function ( ) {
712
+ it ( 'should move an item to a different level after the target' , function ( ) {
713
713
const initialItems = [ ...initial , { name : 'Emily' } , { name : 'Eli' } ] ;
714
714
let { result} = renderHook ( ( ) =>
715
715
useTreeData ( { initialItems, getChildren, getKey} )
@@ -727,7 +727,7 @@ describe('useTreeData', function () {
727
727
expect ( result . current . items . length ) . toEqual ( 2 ) ;
728
728
} ) ;
729
729
730
- it . only ( 'should move an item to a different level at the end when the index is greater than the node list length' , function ( ) {
730
+ it ( 'should move an item to a different level at the end when the index is greater than the node list length' , function ( ) {
731
731
const initialItems = [ ...initial , { name : 'Emily' } , { name : 'Eli' } ] ;
732
732
console . log ( 'initialItems' , initialItems [ 0 ] ) ;
733
733
let { result} = renderHook ( ( ) =>
You can’t perform that action at this time.
0 commit comments