({ children })
| 6 | |
| 7 | describe('useExpanded', () => { |
| 8 | const wrapper = ({ children }) => ( |
| 9 | <StoreContextProvider value={memoryStore()}> |
| 10 | {children} |
| 11 | </StoreContextProvider> |
| 12 | ); |
| 13 | |
| 14 | it('should return false by default', () => { |
| 15 | const { result } = renderHook(() => useExpanded('foo', 123), { |
nothing calls this directly
no test coverage detected