aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorAlex Shatov <alexs@att.com>2017-09-28 09:20:14 -0400
committerAlex Shatov <alexs@att.com>2017-09-28 09:20:14 -0400
commit944b946e05a0e0acbcfc29b15e53dc76e7b05581 (patch)
treeb96c5e003b21957411454b37d208bc8b60341e8b /package.json
parenta2ffa33f55ae178e91df119aa19d2bede35d083f (diff)
4.2.2. fixed starting up of deployment-handler
* start of dh was broken by coding for unit-test * Coverage summary Statements : 50.84% ( 514/1011 ) Branches : 26.11% ( 100/383 ) Functions : 30.11% ( 56/186 ) Lines : 51.35% ( 513/999 ) Change-Id: Ibb59f1ddd25a37a7bd58f4017837a622b04381e3 Issue-Id: DCAEGEN2-62 Signed-off-by: Alex Shatov <alexs@att.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json
index b6215cf..2a4f7e5 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "onap-dcae-deployment-handler",
- "version": "4.2.1",
+ "version": "4.2.2",
"description": "ONAP DCAE Deployment Handler",
"main": "deployment-handler.js",
"dependencies": {
@@ -20,7 +20,8 @@
"nock": "^9.0.21"
},
"scripts": {
- "test": "mocha --reporter spec tests/",
+ "test": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec tests/",
+ "test-only": "mocha --reporter spec tests/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec tests/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot tests/"
},