diff --git a/test/app.router.js b/test/app.router.js index 12b6c1fa51..9a405fae26 100644 --- a/test/app.router.js +++ b/test/app.router.js @@ -37,6 +37,10 @@ describe('app.router', function(){ describe('methods', function(){ methods.concat('del').forEach(function(method){ if (method === 'connect') return; + // Temporarily excluding this test, can gate behind supported Node version when one exists + // upstream tracking https://github.com/nodejs/node/pull/51719 + // express tracking issue: https://github.com/expressjs/express/issues/5615 + if (method === 'query') return; it('should include ' + method.toUpperCase(), function(done){ var app = express();