aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/package.json
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-03-15 00:36:23 +0800
committerGitHub <noreply@github.com>2018-03-15 00:36:23 +0800
commitaea7207b9f9865a279243889a5f9ca1638ddc739 (patch)
tree4d201ece33537f6f1e5dcafc125b093c72fc2b30 /packages/connect/package.json
parente16feb27f4ec1987259a87f360824a0158bd8b10 (diff)
parent40ebb533b324bf7dd454243fcb1ee092ab85f7eb (diff)
downloaddexon-sol-tools-aea7207b9f9865a279243889a5f9ca1638ddc739.tar
dexon-sol-tools-aea7207b9f9865a279243889a5f9ca1638ddc739.tar.gz
dexon-sol-tools-aea7207b9f9865a279243889a5f9ca1638ddc739.tar.bz2
dexon-sol-tools-aea7207b9f9865a279243889a5f9ca1638ddc739.tar.lz
dexon-sol-tools-aea7207b9f9865a279243889a5f9ca1638ddc739.tar.xz
dexon-sol-tools-aea7207b9f9865a279243889a5f9ca1638ddc739.tar.zst
dexon-sol-tools-aea7207b9f9865a279243889a5f9ca1638ddc739.zip
Merge pull request #455 from 0xProject/fix/coveralls
Enable coverage reporting for all packages that have tests
Diffstat (limited to 'packages/connect/package.json')
-rw-r--r--packages/connect/package.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/connect/package.json b/packages/connect/package.json
index 8b3b24fcd..e0478b42a 100644
--- a/packages/connect/package.json
+++ b/packages/connect/package.json
@@ -21,7 +21,9 @@
"lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'",
"run_mocha": "mocha lib/test/**/*_test.js",
"test": "run-s clean build copy_test_fixtures run_mocha",
- "test:circleci": "yarn test"
+ "test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
+ "coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
+ "test:circleci": "yarn test:coverage"
},
"config": {
"postpublish": {
@@ -62,6 +64,7 @@
"@types/mocha": "^2.2.42",
"@types/query-string": "^5.0.1",
"@types/websocket": "^0.0.34",
+ "nyc": "^11.0.1",
"async-child-process": "^1.1.1",
"chai": "^4.0.1",
"chai-as-promised": "^7.1.0",