From 4a4d45fadfbb61e8e147f2b62e5dab5ac55403e8 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Fri, 6 Mar 2020 14:42:45 +0000 Subject: Enabling JS in SonarCloud Configures jest test coverage and missing sonar properties for javascript file scan and report. Change-Id: I9170a176cc4e580ac14f669c334ee949942503f6 Issue-ID: SDC-2741 Signed-off-by: andre.schmid --- catalog-ui/package.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'catalog-ui/package.json') diff --git a/catalog-ui/package.json b/catalog-ui/package.json index 1625802dce..fc99b356dc 100644 --- a/catalog-ui/package.json +++ b/catalog-ui/package.json @@ -12,11 +12,11 @@ "designer": "npm start -- --env.role designer", "admin": "npm start -- --env.role admin", "start": "webpack-dev-server", - "build": "npm run test && webpack --config webpack.config.js", - "build:prod": "npm run test && webpack --config webpack.production.js", + "build": "webpack --config webpack.config.js", + "build:prod": "webpack --config webpack.production.js", "lint": "ng lint", "pree2e": "webdriver-manager update --standalone false --gecko false --quiet", - "test": "jest", + "test": "jest --coverage", "test:watch": "jest --watch", "cypress": "cypress run", "cypress-headless": "start-server-and-test start http-get://localhost:9000 cypress" @@ -24,11 +24,15 @@ "jest": { "preset": "jest-preset-angular", "collectCoverageFrom": [ - "src/app/ng2/pages/composition/**/*.ts" + "/src/app/ng2/**/*.ts" + ], + "coverageDirectory": "/target/code-coverage/", + "coverageReporters": [ + "lcov" ], "setupTestFrameworkScriptFile": "/src/jest/setup-jest.ts", "transformIgnorePatterns": [ - "node_modules/(?!onap-ui-angular)" + "/node_modules/(?!onap-ui-angular)" ], "verbose": true, "roots": [ -- cgit 1.2.3-korg