()
| 51 | } |
| 52 | |
| 53 | public getTrackedFunction() { |
| 54 | return (...args: any[]) => { |
| 55 | this.callCount++; |
| 56 | return this.trackedFunction(...args); |
| 57 | }; |
| 58 | } |
| 59 | |
| 60 | public stopTracking() { |
| 61 | clearInterval(this.intervalId); |
nothing calls this directly
no outgoing calls
no test coverage detected