We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97d79e commit 888246bCopy full SHA for 888246b
test/app.router.js
@@ -37,6 +37,9 @@ 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 remove when resolved upstream https://github.com/nodejs/node/pull/51719
41
+ // express tracking issue: https://github.com/expressjs/express/issues/5615 is resolved
42
+ if (method === 'query') return;
43
44
it('should include ' + method.toUpperCase(), function(done){
45
var app = express();
0 commit comments