1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-06-25 16:59:19 +00:00

Added ObjectUtil

Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-09-11 10:43:07 +02:00
parent 6269f5c27e
commit 7e3fe2f7f1
12 changed files with 312 additions and 2 deletions

View File

@ -0,0 +1,18 @@
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"
],
},
}