Added test cases for superagent

This commit is contained in:
Napalys
2025-03-19 17:44:22 +01:00
parent 179bae8791
commit e5c179d5a4

View File

@@ -314,3 +314,9 @@ function usePolyfill() {
return response.text()
})
}
function useSuperagent(url){
superagent('GET', url); // Not flagged
superagent.del(url); // Not flagged
superagent.agent().post(url).send(data); // Not flagged
}