(a, b)
| 84 | |
| 85 | // we define some fn with its signature: |
| 86 | const fn: (a: string, b: number) => string = (a, b) => a + b |
| 87 | |
| 88 | // now someFn expect to be called with args [a: string, b: number] |
| 89 | const someFn = notifyManagerTest.batchCalls(fn) |
no outgoing calls
no test coverage detected