Skip to content

Commit 438a1f5

Browse files
committed
skip query method test
related: #5615
1 parent d97d79e commit 438a1f5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: test/app.router.js

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ describe('app.router', function(){
3737
describe('methods', function(){
3838
methods.concat('del').forEach(function(method){
3939
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;
4044

4145
it('should include ' + method.toUpperCase(), function(done){
4246
var app = express();

0 commit comments

Comments
 (0)