We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b1cce commit 65395c9Copy full SHA for 65395c9
spec/CloudCode.spec.js
@@ -1485,6 +1485,9 @@ describe('Cloud Code', () => {
1485
count += 1;
1486
expect(typeof req.object.get('objectField').number).toBe('number');
1487
});
1488
+ Parse.Cloud.afterSave('CloudIncrementNested', req => {
1489
+ expect(typeof req.object.get('objectField').number).toBe('number');
1490
+ });
1491
1492
const obj = new Parse.Object('CloudIncrementNested');
1493
obj.set('objectField', { number: 5 });
0 commit comments