File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,10 +76,10 @@ function getMajorVersion(versionString) {
76
76
}
77
77
78
78
function shouldSkipQuery ( versionString ) {
79
- // Skipping HTTP QUERY tests on Node 21, it is reported in http.METHODS on 21.7.2 but not supported
80
- // update this implementation to run on supported versions of 21 once they exist
79
+ // Skipping HTTP QUERY tests below Node 22, QUERY wasn't fully supported by Node until 22
80
+ // we could update this implementation to run on supported versions of 21 once they exist
81
81
// upstream tracking https://github.com/nodejs/node/issues/51562
82
82
// express tracking issue: https://github.com/expressjs/express/issues/5615
83
- return Number ( getMajorVersion ( versionString ) ) === 21
83
+ return Number ( getMajorVersion ( versionString ) ) < 22
84
84
}
85
85
You can’t perform that action at this time.
0 commit comments