Presupuestador_web/server/jest.config.js
2024-04-24 12:48:49 +02:00

14 lines
258 B
JavaScript

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