generated from nhcarrigan/template
feat: add start and end dates
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
export default {
|
||||
displayName: "shared-types",
|
||||
preset: "../jest.preset.js",
|
||||
testEnvironment: "node",
|
||||
transform: {
|
||||
"^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }],
|
||||
},
|
||||
moduleFileExtensions: ["ts", "js", "html"],
|
||||
coverageDirectory: "../coverage/shared-types",
|
||||
coverageThreshold: {
|
||||
global: {
|
||||
branches: 100,
|
||||
functions: 100,
|
||||
lines: 100,
|
||||
statements: 100,
|
||||
},
|
||||
},
|
||||
collectCoverageFrom: [
|
||||
"src/**/*.ts",
|
||||
"!src/index.ts", // Just re-exports
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user