(...ops: ReturnType<typeof ce.parse>[])
| 1862 | expect( |
| 1863 | ce.parse('\\prod_{n=1}^{b}(n+1)').simplify().toString() |
| 1864 | ).toMatchInlineSnapshot(`(b + 1)! / 1!`); |
| 1865 | }); |
| 1866 | |
| 1867 | it('should evaluate product with index shift (n+1)', () => { |
| 1868 | // 2*3*4*5 = 120 |
no test coverage detected