honojs-middleware/jest.config.js

14 lines
284 B
JavaScript
Raw Normal View History

2022-07-23 22:56:20 +08:00
module.exports = {
2022-07-28 13:58:54 +08:00
testMatch: [
"**/test/**/*.+(ts|tsx|js)",
"**/src/**/(*.)+(spec|test).+(ts|tsx|js)",
],
2022-07-23 22:56:20 +08:00
transform: {
2022-07-28 13:58:54 +08:00
"^.+\\.(ts|tsx)$": "ts-jest",
2022-07-23 22:56:20 +08:00
},
2022-07-28 13:58:54 +08:00
testEnvironment: "miniflare",
testEnvironmentOptions: {
kvNamespaces: ["PUBLIC_JWK_CACHE_KV"],
},
};