(s: string)
| 1 | import { engine as ce, exprToString } from '../../utils'; |
| 2 | |
| 3 | function parse(s: string) { |
| 4 | const expr = ce.parse(s); |
| 5 | return expr.toLatex() + '\n' + expr.toString() + '\n' + exprToString(expr); |
| 6 | } |
| 7 | |
| 8 | /** Integrals with no limits specified */ |
| 9 | describe('INDEFINITE INTEGRAL', () => { |
no test coverage detected