We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23937d commit 7a2a567Copy full SHA for 7a2a567
1 file changed
test/lib/server/h2.js
@@ -10,6 +10,8 @@ let server;
10
11
const nodeVersion = parseInt(process.versions.node.split(".")[0], 10);
12
13
+// Withe Node.js 24 and later, the HTTP parser is missing, which breaks the HTTP/2 support in the spdy package.
14
+// Tests need to be NodeJs version agnostic.
15
if (nodeVersion < 24) {
16
// Start server before running tests
17
test.before(async (t) => {
0 commit comments