Added tests to sdc-pubsub 77/61177/1
authorIdan Amit <ia096e@intl.att.com>
Sun, 19 Aug 2018 15:46:25 +0000 (18:46 +0300)
committerIdan Amit <ia096e@intl.att.com>
Sun, 19 Aug 2018 15:46:25 +0000 (18:46 +0300)
Changed sonar parameters to integrate with sonarTS plugin

Change-Id: I2e725632e0964d76aa397938f34ab07bbd67d5f0
Issue-ID: SDC-1542
Signed-off-by: Idan Amit <ia096e@intl.att.com>
.gitignore
.npmignore
jest.config.js
pom.xml

index 3db6931..67b1132 100644 (file)
@@ -10,3 +10,4 @@ sdc-pubsub.iml
 node/
 !/jest.config.js
 /coverage/
+/target/
index f72406b..3ff9fe3 100644 (file)
@@ -16,3 +16,4 @@ node/
 pom.xml
 /coverage/
 /jest.config.js
+/target/
index f4b1f87..3cf55c2 100644 (file)
@@ -8,11 +8,7 @@ module.exports = {
     "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$",
     "moduleFileExtensions": [
         "ts",
-        "tsx",
         "js",
-        "jsx",
-        "json",
-        "node"
     ],
     "testURL": "http://localhost/",
     "coverageDirectory": "<rootDir>/coverage",
diff --git a/pom.xml b/pom.xml
index 55fca90..cf2dcfb 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                <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>