blob: c84d31bbdab2bd8d6983c209c67aa83c01d57d37 (
plain)
1
2
3
4
5
6
7
8
9
|
module.exports = {
collectCoverageFrom: ["src/**/*.ts"],
moduleFileExtensions: ["js", "ts"],
testResultsProcessor: "jest-sonar-reporter",
transform: {
"^.+\\.ts$": "ts-jest"
},
testMatch: ["<rootDir>/tests/**/*.test.ts"]
};
|