diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-01-19 23:52:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-20 04:52:48 +0000 |
commit | 39265a43d969e1201cb5267789967b57835059b1 (patch) | |
tree | e6ff82234037b16782b85d77901b29bbe12137fd /test | |
parent | ffddc74f3d05061fc1e84d149ce678d116cedc4c (diff) |
Separate core classes into separate files (#545)
Diffstat (limited to 'test')
-rw-r--r-- | test/core.test.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/core.test.js b/test/core.test.js index c7370abf..0ddcc2d1 100644 --- a/test/core.test.js +++ b/test/core.test.js @@ -17,7 +17,8 @@ */ import {describe, expect, test} from 'vitest'; -import {DynamicProperty, deepEqual} from '../ext/js/core.js'; +import {DynamicProperty} from '../ext/js/core/dynamic-property.js'; +import {deepEqual} from '../ext/js/core/utilities.js'; /** */ function testDynamicProperty() { |