14 lines
312 B
JavaScript
14 lines
312 B
JavaScript
/*
|
|
* For a detailed explanation regarding each configuration property and type check, visit:
|
|
* https://jestjs.io/docs/configuration
|
|
*/
|
|
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
clearMocks: true,
|
|
collectCoverage: true,
|
|
coverageDirectory: "coverage",
|
|
coverageProvider: "v8",
|
|
}
|