1 2 3 4 5 6 7 8 9 10 11module.exports = { rootDir: ".", testMatch: ["<rootDir>/src/tests/*.test.ts"], transform: { "^.+\\.ts$": "ts-jest" }, testEnvironment: "node", verbose: true, // silent: true, maxWorkers: 1 };
1 2 3 4 5 6 7 8 9 10 11
module.exports = { rootDir: ".", testMatch: ["<rootDir>/src/tests/*.test.ts"], transform: { "^.+\\.ts$": "ts-jest" }, testEnvironment: "node", verbose: true, // silent: true, maxWorkers: 1 };