()
| 30 | } |
| 31 | |
| 32 | const Child = () => { |
| 33 | const { trackEvent } = useTracking(); |
| 34 | |
| 35 | useEffect(() => { |
| 36 | trackEvent({ test: true }); |
| 37 | }, [trackEvent]); |
| 38 | |
| 39 | return 'hi'; |
| 40 | }; |
| 41 | |
| 42 | mount( |
| 43 | <TestDefaults> |
nothing calls this directly
no test coverage detected
searching dependent graphs…