(expected: Array<unknown>)
| 39 | const NO_ARGUMENTS = 'called with 0 arguments'; |
| 40 | |
| 41 | const printExpectedArgs = (expected: Array<unknown>): string => |
| 42 | expected.length === 0 |
| 43 | ? NO_ARGUMENTS |
| 44 | : expected.map(arg => printExpected(arg)).join(', '); |
| 45 | |
| 46 | const printReceivedArgs = ( |
| 47 | received: Array<unknown>, |
no test coverage detected