Skip to content

Commit 768e253

Browse files
committed
remove onlys
1 parent 8f14593 commit 768e253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@react-stately/data/test/useTreeData.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ describe('useTreeData', function () {
709709
expect(result.current.items.length).toEqual(2);
710710
});
711711

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 () {
713713
const initialItems = [...initial, {name: 'Emily'}, {name: 'Eli'}];
714714
let {result} = renderHook(() =>
715715
useTreeData({initialItems, getChildren, getKey})
@@ -727,7 +727,7 @@ describe('useTreeData', function () {
727727
expect(result.current.items.length).toEqual(2);
728728
});
729729

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 () {
731731
const initialItems = [...initial, {name: 'Emily'}, {name: 'Eli'}];
732732
console.log('initialItems', initialItems[0]);
733733
let {result} = renderHook(() =>

0 commit comments

Comments
 (0)