@@ -33,7 +33,7 @@ import getCompiler from "./helpers/getCompiler";
3333import getCompilerHooks from "./helpers/getCompilerHooks" ;
3434
3535// Suppress unnecessary stats output
36- jest . spyOn ( globalThis . console , "log" ) . mockImplementation ( ) ;
36+ // jest.spyOn(globalThis.console, "log").mockImplementation();
3737
3838async function startServer ( name , app ) {
3939 return new Promise ( ( resolve , reject ) => {
@@ -315,13 +315,13 @@ function parseHttpDate(date) {
315315}
316316
317317describe . each ( [
318- [ "connect" , connect ] ,
319- [ "express" , express ] ,
320- [ "express-v4" , expressOld ] ,
321- [ "router" , router ] ,
322- [ "fastify" , fastify ] ,
323- [ "koa" , koa ] ,
324- [ "hapi" , Hapi ] ,
318+ // ["connect", connect],
319+ // ["express", express],
320+ // ["express-v4", expressOld],
321+ // ["router", router],
322+ // ["fastify", fastify],
323+ // ["koa", koa],
324+ // ["hapi", Hapi],
325325 [ "hono" , Hono ] ,
326326] ) ( "%s framework:" , ( name , framework ) => {
327327 describe ( "middleware" , ( ) => {
@@ -3159,8 +3159,9 @@ describe.each([
31593159 } ) ;
31603160 } ) ;
31613161
3162- describe ( "should handle custom fs errors and response 500 code without `fs.createReadStream`" , ( ) => {
3162+ describe . skip ( "should handle custom fs errors and response 500 code without `fs.createReadStream`" , ( ) => {
31633163 let compiler ;
3164+ // Try to disable this
31643165
31653166 const outputPath = path . resolve (
31663167 __dirname ,
0 commit comments