(issue: InvalidValue)
| 1043 | } |
| 1044 | |
| 1045 | function findExpected(issue: InvalidValue): string | undefined { |
| 1046 | const expected = issue.annotations?.expected |
| 1047 | return typeof expected === "string" ? expected : undefined |
| 1048 | } |
| 1049 | |
| 1050 | function getExpectedMessage(expected: string, issue: Issue): string { |
| 1051 | const input = formatInput(issue) |
no outgoing calls
no test coverage detected