Fix: Proper handling of arrays for cloud validator (#7178)
* fix: proper handling of arrays for cloud validator * Update CloudCode.Validator.spec.js
This commit is contained in:
@@ -264,6 +264,24 @@ describe('cloud validator', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('set params type allow array', async () => {
|
||||
Parse.Cloud.define(
|
||||
'hello',
|
||||
() => {
|
||||
return 'Hello world!';
|
||||
},
|
||||
{
|
||||
fields: {
|
||||
data: {
|
||||
type: Array,
|
||||
},
|
||||
},
|
||||
}
|
||||
);
|
||||
const result = await Parse.Cloud.run('hello', { data: [{ foo: 'bar' }] });
|
||||
expect(result).toBe('Hello world!');
|
||||
});
|
||||
|
||||
it('set params type', done => {
|
||||
Parse.Cloud.define(
|
||||
'hello',
|
||||
|
||||
Reference in New Issue
Block a user