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.
axios
1 parent 9d3d3de commit e79f460Copy full SHA for e79f460
javascript/ql/test/library-tests/frameworks/ClientRequests/tst.js
@@ -339,3 +339,12 @@ function gotTests(url){
339
const jsonClient2 = got.extend({url: url}).extend({url: url});
340
jsonClient2.get();
341
}
342
+
343
+function moreAxiosTests(url, data, config){
344
+ axios.postForm(url, data, config); // not flagged
345
+ axios.putForm(url, data); // not flagged
346
+ axios.putForm(url, data, config); // not flagged
347
+ axios.patchForm(url, data); // not flagged
348
+ axios.patchForm(url, data, config); // not flagged
349
+ axios.getUri({ url: url }); // not flagged
350
+}
0 commit comments