(value)
| 168 | |
| 169 | it('should keep leading and trailing whitespace in the output', function() { |
| 170 | function stringify(value) { |
| 171 | return JSON.stringify(value, null, 2); |
| 172 | } |
| 173 | const diffResult = diffTrimmedLines( |
| 174 | stringify([10, 20, 30]), |
| 175 | stringify({ data: [10, 42, 30] })); |