aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-utils/package.json
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-03-14 19:27:09 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-03-15 00:15:38 +0800
commit40ebb533b324bf7dd454243fcb1ee092ab85f7eb (patch)
tree4d201ece33537f6f1e5dcafc125b093c72fc2b30 /packages/dev-utils/package.json
parent7fe26ee7196320a3478cd93b24329d69a826badb (diff)
downloaddexon-sol-tools-40ebb533b324bf7dd454243fcb1ee092ab85f7eb.tar
dexon-sol-tools-40ebb533b324bf7dd454243fcb1ee092ab85f7eb.tar.gz
dexon-sol-tools-40ebb533b324bf7dd454243fcb1ee092ab85f7eb.tar.bz2
dexon-sol-tools-40ebb533b324bf7dd454243fcb1ee092ab85f7eb.tar.lz
dexon-sol-tools-40ebb533b324bf7dd454243fcb1ee092ab85f7eb.tar.xz
dexon-sol-tools-40ebb533b324bf7dd454243fcb1ee092ab85f7eb.tar.zst
dexon-sol-tools-40ebb533b324bf7dd454243fcb1ee092ab85f7eb.zip
Enable coverage for all other packages with tests
Diffstat (limited to 'packages/dev-utils/package.json')
-rw-r--r--packages/dev-utils/package.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/dev-utils/package.json b/packages/dev-utils/package.json
index f9fc4e619..bfe752982 100644
--- a/packages/dev-utils/package.json
+++ b/packages/dev-utils/package.json
@@ -8,8 +8,10 @@
"build:watch": "tsc -w",
"build": "tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
"test": "run-s clean build run_mocha",
- "test:circleci": "yarn test",
+ "test:circleci": "yarn test:coverage",
"run_mocha": "mocha lib/test/**/*_test.js --bail --exit",
+ "test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
+ "coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
"clean": "shx rm -rf lib scripts",
"lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'"
},
@@ -28,6 +30,7 @@
"@0xproject/web3-wrapper": "^0.2.1",
"@types/lodash": "^4.14.86",
"@types/mocha": "^2.2.42",
+ "nyc": "^11.0.1",
"chai": "^4.0.1",
"chai-typescript-typings": "^0.0.4",
"copyfiles": "^1.2.0",