({ children })
| 24 | |
| 25 | it('defaults mostly everything', () => { |
| 26 | function TestDefaults({ children }) { |
| 27 | const { Track } = useTracking({}, { process: () => null }); |
| 28 | |
| 29 | return <Track>{children}</Track>; |
| 30 | } |
| 31 | |
| 32 | const Child = () => { |
| 33 | const { trackEvent } = useTracking(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…