Skip to content

Commit 9b92cd3

Browse files
test: debug
1 parent f33256f commit 9b92cd3

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

test/middleware.test.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import getCompiler from "./helpers/getCompiler";
3333
import 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

3838
async function startServer(name, app) {
3939
return new Promise((resolve, reject) => {
@@ -315,13 +315,13 @@ function parseHttpDate(date) {
315315
}
316316

317317
describe.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

Comments
 (0)