(input: string)
| 19 | } |
| 20 | |
| 21 | function formatCustom(input: string) { |
| 22 | return { |
| 23 | reversed: input.split('').reverse().join(''), |
| 24 | length: input.length, |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | expect.extend({ |
| 29 | toMatchCustomSnapshot(actual: string, properties?: object) { |
no outgoing calls
no test coverage detected