(operator: string | undefined)
| 88 | }; |
| 89 | |
| 90 | const operatorMessage = (operator: string | undefined) => { |
| 91 | const niceOperatorName = getOperatorName(operator, ''); |
| 92 | const humanReadableOperator = humanReadableOperators[niceOperatorName]; |
| 93 | |
| 94 | return typeof operator === 'string' |
| 95 | ? `${humanReadableOperator || niceOperatorName} to:\n` |
| 96 | : ''; |
| 97 | }; |
| 98 | |
| 99 | const assertThrowingMatcherHint = (operatorName: string) => |
| 100 | operatorName |
no test coverage detected