diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-08-20 11:16:52 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-08-20 11:16:52 +0530 |
| commit | 2b94b07fdc8f1a82f507b99000add9b7dca2c3d8 (patch) | |
| tree | c96e3c0992cc24145c9b42cbaf8ea8f607c6b73c /tests/eval.spec.ts | |
| parent | 3ff7d709998fe33f82e6da50d7b3327b076a1039 (diff) | |
| download | css-everything-2b94b07fdc8f1a82f507b99000add9b7dca2c3d8.tar.gz css-everything-2b94b07fdc8f1a82f507b99000add9b7dca2c3d8.zip | |
refactor: adds evalvalue type instead of string
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({ |
