diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 15:27:50 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 15:27:50 -0300 |
commit | 4c225480eded40ef45d888b473fbc02d862dd59b (patch) | |
tree | aa017135652fb114a6421bbb0a767e707f9e65ba /test/unit/data/cacheable-object.js | |
parent | 4b3234a71a7f0e4edd68ccd7ff40270b34290bd8 (diff) |
test: update mini CacheableObject constructor setups
Diffstat (limited to 'test/unit/data/cacheable-object.js')
-rw-r--r-- | test/unit/data/cacheable-object.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/unit/data/cacheable-object.js b/test/unit/data/cacheable-object.js index 4b927248..4be31788 100644 --- a/test/unit/data/cacheable-object.js +++ b/test/unit/data/cacheable-object.js @@ -2,10 +2,14 @@ import t from 'tap'; import CacheableObject from '#cacheable-object'; -function newCacheableObject(PD) { - return new (class extends CacheableObject { - static [CacheableObject.propertyDescriptors] = PD; - }); +function newCacheableObject(propertyDescriptors) { + const constructor = class extends CacheableObject { + static [CacheableObject.propertyDescriptors] = propertyDescriptors; + }; + + constructor.finalizeCacheableObjectPrototype(); + + return Reflect.construct(constructor, []); } t.test(`CacheableObject simple separate update & expose`, t => { |