diff2html/jest.config.js

16 lines
295 B
JavaScript
Raw Normal View History

module.exports = {
verbose: true,
preset: "ts-jest",
testEnvironment: "node",
coverageDirectory: "./coverage",
coverageReporters: ["lcov", "text", "html"],
coverageThreshold: {
global: {
2019-12-22 21:15:50 +00:00
statements: 94,
branches: 85,
2019-12-22 21:15:50 +00:00
functions: 98,
lines: 93
}
}
};