diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-12 03:03:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 02:03:57 +0000 |
commit | 46d5f38a0f839db34ecce67f3483469e82cb593d (patch) | |
tree | 307bbe836040155cb64c48f0897ea713737a7819 /tests/unit_node/http2_test.ts | |
parent | 3285801429eb7a40e022b571b7e3007c3e60250c (diff) |
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.
Diffstat (limited to 'tests/unit_node/http2_test.ts')
-rw-r--r-- | tests/unit_node/http2_test.ts | 5 |
1 files changed, 5 insertions, 0 deletions
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); +}); |