diff options
Diffstat (limited to '')
| -rw-r--r-- | tests/eval.spec.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/eval.spec.ts b/tests/eval.spec.ts index 1d8b161..660f0b9 100644 --- a/tests/eval.spec.ts +++ b/tests/eval.spec.ts @@ -11,8 +11,19 @@ describe('eval', () => { getVariable: jest.fn(), updateVariable: jest.fn(), setAttribute: jest.fn(), + getAttribute: jest.fn(), + withEvent: jest.fn(), + getFormData: jest.fn(), + sendRequest: jest.fn(), + addChildren: jest.fn(), + removeElement: jest.fn(), + callMethod: jest.fn(), } + fit('should do stuff', () => { + console.log('yo') + }) + it('should add classes', async () => { await evalExpr( Expr.Call({ |
