reg-notify-github-plugin
Version:
Notify reg-suit result to GitHub repository
15 lines (14 loc) • 350 B
JavaScript
module.exports = {
globals: {
"ts-jest": {
diagnostics: false,
},
},
transform: {
"^.+\\.ts$": "ts-jest",
},
testRegex: "(src/.*\\.test)\\.ts$",
testPathIgnorePatterns: ["/node_modules/", "\\.d\\.ts$", "lib/.*"],
collectCoverageFrom: ["src/**/*.ts", "!**/testing/**"],
moduleFileExtensions: ["js", "ts", "json"],
};