From 46d5f38a0f839db34ecce67f3483469e82cb593d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 12 Sep 2024 03:03:57 +0100 Subject: fix(ext/node): export request and response clases from `http2` module (#25592) Closes https://github.com/denoland/deno/issues/20612 Closes https://github.com/denoland/deno/issues/23326 This makes `qwik` work. --- tests/unit_node/http2_test.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/unit_node') diff --git a/tests/unit_node/http2_test.ts b/tests/unit_node/http2_test.ts index 1dfac8f8c..cb939646b 100644 --- a/tests/unit_node/http2_test.ts +++ b/tests/unit_node/http2_test.ts @@ -378,3 +378,8 @@ Deno.test("[node/http2 client] connection states", async () => { assertEquals(actual, expected); }); + +Deno.test("request and response exports", () => { + assert(http2.Http2ServerRequest); + assert(http2.Http2ServerResponse); +}); -- cgit v1.2.3