diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | .npmignore | 1 | ||||
-rw-r--r-- | jest.config.js | 4 | ||||
-rw-r--r-- | pom.xml | 13 |
4 files changed, 9 insertions, 10 deletions
@@ -10,3 +10,4 @@ sdc-pubsub.iml node/ !/jest.config.js /coverage/ +/target/ @@ -16,3 +16,4 @@ node/ pom.xml /coverage/ /jest.config.js +/target/ diff --git a/jest.config.js b/jest.config.js index f4b1f87..3cf55c2 100644 --- a/jest.config.js +++ b/jest.config.js @@ -8,11 +8,7 @@ module.exports = { "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$", "moduleFileExtensions": [ "ts", - "tsx", "js", - "jsx", - "json", - "node" ], "testURL": "http://localhost/", "coverageDirectory": "<rootDir>/coverage", @@ -12,12 +12,13 @@ <nexus.proxy>https://nexus.onap.org</nexus.proxy> <staging.profile.id>176c31dfe190a</staging.profile.id> - <sonar.typescript.node>${basedir}/node</sonar.typescript.node> - <sonar.sources>${basedir}/lib</sonar.sources> - <sonar.tests>${basedir}/lib</sonar.tests> - <sonar.test.inclusions>${basedir}/lib/*.spec.ts</sonar.test.inclusions> - <sonar.typescript.lcov.reportPaths>${basedir}/coverage/lcov.info</sonar.typescript.lcov.reportPaths> - <sonar.testExecutionReportPaths>${basedir}/coverage/test-report.xml</sonar.testExecutionReportPaths> + <sonar.typescript.node>node</sonar.typescript.node> + <sonar.sources>lib</sonar.sources> + <sonar.inclusions>lib/*.ts</sonar.inclusions> + <sonar.tests>lib</sonar.tests> + <sonar.test.inclusions>lib/*.spec.ts</sonar.test.inclusions> + <sonar.typescript.lcov.reportPaths>coverage/lcov.info</sonar.typescript.lcov.reportPaths> + <sonar.testExecutionReportPaths>coverage/test-report.xml</sonar.testExecutionReportPaths> </properties> <build> |