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: {
statements: 90,
branches: 85,
functions: 90,
lines: 90
}
}
};