(input: string)
| 50 | |
| 51 | const lineCount = (input: string): number =>(input.match(/\n/g) ?? []).length |
| 52 | |
| 53 | expect.extend({ |
| 54 | toHaveLabel(received: string, label: string) { |
| 55 | const stripped = stripEscapeSequences(received) |
no outgoing calls
no test coverage detected