diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-29 21:04:27 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-29 21:04:27 -0500 | 
| commit | a0a6291db8e2be29c4ed13645c250201b4552b9d (patch) | |
| tree | 18a0141f0aed7d87e1a1c0cbf1fd86b9de2ba8f4 /test/core.test.js | |
| parent | 9ed81f25ab7f462546888a4ddd7fcecdf5ea1806 (diff) | |
Update tests
Diffstat (limited to 'test/core.test.js')
| -rw-r--r-- | test/core.test.js | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/test/core.test.js b/test/core.test.js index 203460f4..685bf9dc 100644 --- a/test/core.test.js +++ b/test/core.test.js @@ -19,14 +19,17 @@  import {describe, expect, test} from 'vitest';  import {DynamicProperty, deepEqual} from '../ext/js/core.js'; +/** */  function testDynamicProperty() {      test('DynamicProperty', () => {          const data = [              {                  initialValue: 0, +                /** @type {{operation: ?string, expectedDefaultValue: number, expectedValue: number, expectedOverrideCount: number, expeectedEventOccurred: boolean, args: [value: number, priority?: number]}[]} */                  operations: [                      {                          operation: null, +                        args: [0],                          expectedDefaultValue: 0,                          expectedValue: 0,                          expectedOverrideCount: 0, @@ -147,6 +150,7 @@ function testDynamicProperty() {      });  } +/** */  function testDeepEqual() {      describe('deepEqual', () => {          const data = [ @@ -280,6 +284,7 @@ function testDeepEqual() {  } +/** */  function main() {      testDynamicProperty();      testDeepEqual();  |