diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/eval.spec.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/eval.spec.ts b/tests/eval.spec.ts index d61a470..2b226f7 100644 --- a/tests/eval.spec.ts +++ b/tests/eval.spec.ts @@ -1,5 +1,5 @@ import { EvalActions, EvalValue, evalExpr } from '../src/eval' -import { Expr, exprParser, parseExpr } from '../src/parser' +import { Expr, parseExpr } from '../src/parser' describe('eval', () => { const deps: EvalActions = { @@ -18,6 +18,7 @@ describe('eval', () => { addChildren: jest.fn(), removeElement: jest.fn(), callMethod: jest.fn(), + evaluateInScope: jest.fn(), } fdescribe('function/call', () => { |
