Presupuestador_web/server/jest.config.js

14 lines
258 B
JavaScript
Raw Normal View History

2024-04-24 10:48:49 +00:00
module.exports = {
globals: {
"ts-jest": {
tsconfig: "tsconfig.json",
},
},
moduleFileExtensions: ["ts", "js"],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest",
},
testMatch: ["**/*.test.(ts|js)"],
testEnvironment: "node",
};