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 588808f commit 05f0ca1Copy full SHA for 05f0ca1
packages/node-http-handler/src/node-http2-handler.spec.ts
@@ -0,0 +1,11 @@
1
+import { NodeHttp2Handler } from "./node-http2-handler";
2
+
3
+describe("NodeHttp2Handler", () => {
4
+ describe("connectionPool", () => {
5
+ it("is empty on initialization", () => {
6
+ const nodeH2Handler = new NodeHttp2Handler();
7
+ // @ts-ignore: access private property
8
+ expect(nodeH2Handler.connectionPool.size).toBe(0);
9
+ });
10
11
+});
0 commit comments