Added test case for create.

This commit is contained in:
Napalys
2025-03-24 08:53:37 +01:00
parent c0d848cdf1
commit 8f2adb6543

View File

@@ -347,4 +347,7 @@ function moreAxiosTests(url, data, config){
axios.patchForm(url, data);
axios.patchForm(url, data, config);
axios.getUri({ url: url });
const axiosInstance = axios.create({});
axiosInstance({method: "get", url: url, responseType: "text"}); // Not flagged
}