Skip to content

Commit

Permalink
remove 'done'
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel <5673677+mtrezza@users.noreply.github.com>
  • Loading branch information
mtrezza authored Jan 15, 2024
1 parent cd25476 commit ac33bab
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spec/ParseAPI.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ describe('miscellaneous', function () {
});
});

it('test cloud function query parameters with array of pointers', async done => {
it('test cloud function query parameters with array of pointers', async () => {
Parse.Cloud.define('echoParams', req => {
return req.params;
});
Expand All @@ -1284,7 +1284,6 @@ describe('miscellaneous', function () {
});
const res = response.data.result;
expect(res.arr.length).toEqual(1);
done();
});

it('can handle null params in cloud functions (regression test for #1742)', done => {
Expand Down

0 comments on commit ac33bab

Please sign in to comment.