We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23d9902 commit bc38105Copy full SHA for bc38105
packages/runtime/test/consumption/openid4vc.test.ts
@@ -1,4 +1,5 @@
1
import axios, { AxiosInstance } from "axios";
2
+import { Agent, setGlobalDispatcher } from "undici";
3
import { ConsumptionServices } from "../../src";
4
import { RuntimeServiceProvider } from "../lib";
5
@@ -28,6 +29,8 @@ beforeAll(async () => {
28
29
await new Promise((resolve) => setTimeout(resolve, 1000));
30
healthCheckResult = await axiosInstance.get("/health");
31
}
32
+
33
+ setGlobalDispatcher(new Agent({ connections: 100 }));
34
}, 120000);
35
36
afterAll(async () => {
0 commit comments