We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89e4783 commit 6029f8eCopy full SHA for 6029f8e
packages/module/src/Hooks/selection.test.tsx
@@ -9,6 +9,7 @@ describe('useDataViewSelection', () => {
9
selected: [],
10
onSelect: expect.any(Function),
11
isSelected: expect.any(Function),
12
+ setSelected: expect.any(Function),
13
})
14
});
15
@@ -19,6 +20,7 @@ describe('useDataViewSelection', () => {
19
20
selected: initialSelected,
21
22
23
24
25
26
@@ -111,4 +113,4 @@ describe('useDataViewSelection', () => {
111
113
expect(result.current.isSelected({ id: 2, name: 'test2' })).toBe(true);
112
114
expect(result.current.isSelected({ id: 3, name: 'test3' })).toBe(true);
115
-});
116
+});
0 commit comments