"ng": "ng",
"start": "ng serve --host www.sdk.onap.org --port 8200 --open",
"build": "ng build",
- "test": "ng test",
+ "test": "ng test --watch=false --code-coverage --browsers=ChromeHeadless",
"lint": "ng lint",
- "e2e": "ng e2e"
+ "e2e": "ng e2e",
+ "sonar": "sonar-scanner"
},
"private": true,
"dependencies": {
"d3-scale": "^3.1.0",
"font-awesome": "^4.7.0",
"ionicons": "^4.6.2",
+ "lodash-es": "^4.17.10",
"ng2-smart-table": "^1.5.0",
"ng6-o2-chart": "^0.4.0",
+ "ngx-cookie-service": "^2.3.0",
+ "portalsdk-tag-lib": "file:portalsdk-tag-lib-0.0.1.tgz",
"rxjs": "~6.3.3",
"rxjs-compat": "^6.5.2",
+ "sonar-scanner": "^3.1.0",
"tslib": "^1.9.0",
- "zone.js": "~0.8.26",
- "lodash-es": "^4.17.10",
- "ngx-cookie-service": "^2.3.0",
- "portalsdk-tag-lib": "file:portalsdk-tag-lib-0.0.1.tgz"
+ "zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.10.0",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.4.0",
+ "puppeteer": "^2.1.1",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.1.6"
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
+process.env.CHROME_BIN = require('puppeteer').executablePath()
module.exports = function (config) {
const defaults = {
basePath: '',
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
- browsers: ['Chrome'],
+ browsers: ['ChromeHeadless'],
singleRun: false,
}
<!-- Version number gets stored only here -->
<tomcat.download.path>http://archive.apache.org/dist/tomcat/tomcat-8/v8.0.37/bin</tomcat.download.path>
<tomcat.download.name>apache-tomcat-8.0.37</tomcat.download.name>
+
+ <sonar.typescript.lcov.reportPaths>ngapp/coverage/lcov.info</sonar.typescript.lcov.reportPaths>
+ <sonar.sources>ngapp/src</sonar.sources>
+ <sonar.projectKey>portal-sdk</sonar.projectKey>
+ <sonar.projectName>portal-sdk</sonar.projectName>
+ <sonar.exclusions>**/node_modules/**,**/*.spec.ts</sonar.exclusions>
+ <sonar.test.inclusions>**/*.spec.ts</sonar.test.inclusions>
+ <sonar.tests>ngapp/src</sonar.tests>
+ <sonar.sourceEncoding>UTF-8</sonar.sourceEncoding>
+
</properties>
<!-- repositories are inherited from parent -->
<outputDirectory>${project.basedir}/target/site/jacoco</outputDirectory>
</configuration>
</execution>
+
</executions>
</plugin>
</goals>
</execution>
+
<execution>
+
<id>npm run build</id>
<phase>compile</phase>
<goals>