Skip to content

Commit

Permalink
skip query method test
Browse files Browse the repository at this point in the history
  • Loading branch information
jonchurch committed Apr 29, 2024
1 parent d97d79e commit 94b3fff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/app.router.js
Expand Up @@ -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();
Expand Down

0 comments on commit 94b3fff

Please sign in to comment.