We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f82d753 commit bff4e9aCopy full SHA for bff4e9a
2 files changed
jest.config.js
@@ -7,6 +7,4 @@ module.exports = {
7
setupFilesAfterEnv: ["<rootDir>/setupTest.js"],
8
globalSetup: "./test/helpers/globalSetup.js",
9
snapshotResolver: "./test/helpers/snapshotResolver.js",
10
- // TODO remove this when `hono` fix this problem - https://github.com/honojs/node-server/issues/233
11
- retryTimes: 3,
12
};
test/middleware.test.js
@@ -4325,6 +4325,9 @@ describe.each([
4325
});
4326
4327
describe("writeToDisk option", () => {
4328
+ // TODO remove this when `hono` fix this problem - https://github.com/honojs/node-server/issues/233
4329
+ jest.retryTimes(3, { logErrorsBeforeRetry: true });
4330
+
4331
describe('should work with "true" value', () => {
4332
let compiler;
4333
0 commit comments