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/composite | |
parent | 4b3234a71a7f0e4edd68ccd7ff40270b34290bd8 (diff) |
test: update mini CacheableObject constructor setups
Diffstat (limited to 'test/unit/data/composite')
-rw-r--r-- | test/unit/data/composite/data/withPropertyFromObject.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/unit/data/composite/data/withPropertyFromObject.js b/test/unit/data/composite/data/withPropertyFromObject.js index 912c924c..068932e2 100644 --- a/test/unit/data/composite/data/withPropertyFromObject.js +++ b/test/unit/data/composite/data/withPropertyFromObject.js @@ -61,7 +61,7 @@ t.test(`withPropertyFromObject: "internal" input`, t => { ], }); - const thing = new (class extends CacheableObject { + const constructor = class extends CacheableObject { static [CacheableObject.propertyDescriptors] = { foo: { flags: {update: true, expose: false}, @@ -78,7 +78,11 @@ t.test(`withPropertyFromObject: "internal" input`, t => { }, }, }; - }); + }; + + constructor.finalizeCacheableObjectPrototype(); + + const thing = Reflect.construct(constructor, []); thing.foo = 100; thing.bar = 200; |