(u: Json, n: number)
| 185 | test('fails on pure x²/(a+b·x⁴) as well', () => { |
| 186 | const j: Json = [ |
| 187 | 'Divide', |
| 188 | ['Power', 'x', 2], |
| 189 | ['Add', 'a', ['Multiply', 'b', ['Power', 'x', 4]]], |
| 190 | ]; |
| 191 | expect(() => build(['ExpandIntegrand', j, 'x'], ctx)).toThrow(RuleFail); |
no test coverage detected