We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
axios
1 parent 7bd1c4d commit 51cf155Copy full SHA for 51cf155
javascript/ql/test/library-tests/frameworks/ClientRequests/tst.js
@@ -320,3 +320,12 @@ function useSuperagent(url){
320
superagent.del(url);
321
superagent.agent().post(url).send(data);
322
}
323
+
324
+function moreAxiosTests(url, data, config){
325
+ axios.postForm(url, data, config); // not flagged
326
+ axios.putForm(url, data); // not flagged
327
+ axios.putForm(url, data, config); // not flagged
328
+ axios.patchForm(url, data); // not flagged
329
+ axios.patchForm(url, data, config); // not flagged
330
+ axios.getUri({ url: url }); // not flagged
331
+}
0 commit comments