From 9eb3b70749333b35fa52dfc12c56ba84ec5fdf1c Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Thu, 11 Apr 2019 14:41:11 +0200 Subject: [PATCH] Use tester dist flag for coverage tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 35c89e87e7..c0316eb30b 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ ], "scripts": { "coverage": "nyc npm run coverageTests && nyc report --reporter=text-lcov > .nyc_output/lcov.info", - "coverageTests": "npm run build:dist && tape './tests/api/**/*.js' ./tests/tester.js -s", + "coverageTests": "npm run build:dist && tape './tests/api/**/*.js' ./tests/tester.js -s --dist", "coveralls": "npm run coverage && if [ -n \"$COVERALLS_REPO_TOKEN\" ]; then coveralls <.nyc_output/lcov.info; fi", "testVM": "node ./tests/tester -v", "testStateByzantium": "npm run build:dist && node ./tests/tester -s --fork='Byzantium' --dist",