(initialSet?: Set<K>)
| 2 | import useSet from '../src/useSet'; |
| 3 | |
| 4 | const setUp = <K>(initialSet?: Set<K>) => renderHook(() => useSet(initialSet)); |
| 5 | |
| 6 | it('should init set and utils', () => { |
| 7 | const { result } = setUp(new Set([1, 2])); |
no test coverage detected
searching dependent graphs…