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.
1 parent 504baa3 commit ed65e9aCopy full SHA for ed65e9a
test/utilities/axios.ts
@@ -1,5 +1,7 @@
1
import Axios, { AxiosInstance } from 'axios';
2
+import { Agent } from 'http';
3
4
export const axios: AxiosInstance = Axios.create({
5
baseURL: 'http://localhost:3001/',
6
+ httpAgent: new Agent({ keepAlive: false }), // disable keepAlive until axios is fixed
7
});
0 commit comments