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