You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* stringify request.body in #execute
and NOT in buildRequest, so as to allow other code to modify the body,
before finally getting processed by execute
* Add another test for non-objects
Copy file name to clipboardExpand all lines: test/execute.js
+72-1Lines changed: 72 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -663,6 +663,28 @@ describe('execute', () => {
663
663
}
664
664
})
665
665
})
666
+
667
+
it('should NOT stringify the body, if provided with a javascript object (only execute should do that, allowing us to modify the object in a clean way)',function(){
0 commit comments