fix(core): Fix property existence checks on AugmentObject (#6842)

Fixes https://community.n8n.io/t/code-node-returns-full-item-object-on-node-all/28823
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-08-03 12:19:30 +02:00
committed by GitHub
parent e4f041815a
commit 732416f52f
2 changed files with 5 additions and 5 deletions

View File

@@ -570,6 +570,7 @@ describe('AugmentObject', () => {
augmentedObject.x.z = 5;
expect('z' in augmentedObject.x).toBe(true);
expect('y' in augmentedObject.x).toBe(true);
});
});
});