We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97d79e commit 438a1f5Copy full SHA for 438a1f5
test/app.router.js
@@ -37,6 +37,10 @@ describe('app.router', function(){
37
describe('methods', function(){
38
methods.concat('del').forEach(function(method){
39
if (method === 'connect') return;
40
+ // Temporarily excluding this test, can gate behind supported Node version when one exists
41
+ // upstream tracking https://github.com/nodejs/node/pull/51719
42
+ // express tracking issue: https://github.com/expressjs/express/issues/5615 is resolved
43
+ if (method === 'query') return;
44
45
it('should include ' + method.toUpperCase(), function(done){
46
var app = express();
0 commit comments