(x: number)
| 674 | describe('Constant Bessel functions', () => { |
| 675 | it('d/dx J_2(5) = 0 (no variable)', () => { |
| 676 | const expr = engine.expr(['D', ['BesselJ', 2, 5], 'x']); |
| 677 | const result = expr.evaluate(); |
| 678 | expect(result.toString()).toMatchInlineSnapshot(`0`); |
| 679 | }); |
no outgoing calls
no test coverage detected