(op: string)
| 180 | expect(ce.expr(0).isLess(pinf)).toBe(true); |
| 181 | expect(ce.expr(0).isGreater(ninf)).toBe(true); |
| 182 | }); |
| 183 | |
| 184 | test('evaluated relational operators on equal infinities', () => { |
| 185 | const ev = (op: string) => |
| 186 | ce.expr([op, 'NegativeInfinity', 'NegativeInfinity']).evaluate() |
| 187 | .symbol; |
no test coverage detected