( countReturns: number, countCalls: number, )
| 80 | ); |
| 81 | |
| 82 | const printNumberOfReturns = ( |
| 83 | countReturns: number, |
| 84 | countCalls: number, |
| 85 | ): string => |
| 86 | `\nNumber of returns: ${printReceived(countReturns)}${ |
| 87 | countCalls === countReturns |
| 88 | ? '' |
| 89 | : `\nNumber of calls: ${printReceived(countCalls)}` |
| 90 | }`; |
| 91 | |
| 92 | type PrintLabel = (string: string, isExpectedCall: boolean) => string; |
| 93 |
no test coverage detected