(operator: string | null)
| 46 | }; |
| 47 | |
| 48 | const operatorMessage = (operator: string | null) => { |
| 49 | const niceOperatorName = getOperatorName(operator, ''); |
| 50 | const humanReadableOperator = humanReadableOperators[niceOperatorName]; |
| 51 | |
| 52 | return typeof operator === 'string' |
| 53 | ? `${humanReadableOperator || niceOperatorName} to:\n` |
| 54 | : ''; |
| 55 | }; |
| 56 | |
| 57 | const assertThrowingMatcherHint = (operatorName: string) => |
| 58 | operatorName |
no test coverage detected