pig-dam-core
Version:
Library that should be included in every Pig DAM project we build
34 lines (33 loc) • 458 B
JavaScript
module.exports={
collectCoverageFrom: [
"src/**/*.ts"
],
coverageReporters: [
"cobertura",
"html",
"text-summary",
"text",
],
coverageThreshold: {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100,
}
},
preset: "ts-jest",
reporters: [
"default",
[
"jest-junit",
{
outputDirectory: "reports"
}
],
],
testEnvironment: "node",
testMatch: [
"**/test/**/(*.)+(spec).ts"
]
};