| 23 | |
| 24 | return describe('expandDelta', () => it('should not be confused by array index changes', function() { |
| 25 | const copy = x => JSON.parse(JSON.stringify(x)); |
| 26 | const x = ([0, 1, 2, 3, 4, 5, 6, 7].map((y) => ({value: y, id: `ID:${y}`, squared: y*y}))); |
| 27 | x[3].target = 1; |
| 28 | const x1 = copy(x); |
no test coverage detected