(a, b)
| 662 | }) |
| 663 | |
| 664 | function assertAlike (a, b) { // OK if both NaN or deepEqual |
| 665 | if (isNaN(a)) { |
| 666 | assert(isNaN(b)) |
| 667 | } else { |
| 668 | assert.deepEqual(a, b) |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | it('should preserve values according to context', function () { |
| 673 | const realContext = { context: math.simplify.realContext } |
no test coverage detected
searching dependent graphs…