( actual: any, expected: any, pp: (value: any) => string, )
| 77 | } |
| 78 | |
| 79 | export function buildFailureMessage( |
| 80 | actual: any, |
| 81 | expected: any, |
| 82 | pp: (value: any) => string, |
| 83 | ): string { |
| 84 | const diffs: string[] = []; |
| 85 | listPropertyDifferences(diffs, '', actual, expected, 5, pp); |
| 86 | return '\n ' + diffs.join('\n '); |
| 87 | } |
| 88 | |
| 89 | function listPropertyDifferences( |
| 90 | diffs: string[], |
no test coverage detected
searching dependent graphs…