Skip to content

Commit

Permalink
removed unnecessary props and add className
Browse files Browse the repository at this point in the history
  • Loading branch information
zivchen committed Jan 15, 2024
1 parent 4d2979e commit 56bf739
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 @@ -1280,10 +1280,9 @@ describe('miscellaneous', function () {
method: 'POST',
headers: headers,
url: 'http://localhost:8378/1/functions/echoParams',
body: '{"foo":"bar", "other": 1, "arr": [{ "__type": "Pointer" }]}',
body: '{"arr": [{ "__type": "Pointer", "className": "PointerTest" }]}',
});
const res = response.data.result;
expect(res.foo).toEqual('bar');
expect(res.arr.length).toEqual(1);
done();
});
Expand Down

0 comments on commit 56bf739

Please sign in to comment.