1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 10:52:11 +00:00
libs/packages/object-util/jest.config.js
Florian Bouillon 7e3fe2f7f1 Added ObjectUtil
Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
2020-09-11 10:43:07 +02:00

19 lines
424 B
JavaScript

module.exports = {
globals: {
'ts-jest': {
tsConfig: 'tsconfig.test.json'
},
"transform": {
".(ts|tsx)": " ../../node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testResultsProcessor": "../../node_modules/ts-jest/coverageprocessor.js",
"collectCoverageFrom": ["src/URLManager.ts"],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
},
}