Skip to content

Commit

Permalink
Silence the coverage report in test results
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzdogan committed Jul 5, 2023
1 parent 57e85ee commit 922e92f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"build": "tsc",
"build:clean": "rm -rf node_modules/ packages/bytecode-utils/node_modules/ packages/contract-call-decoder/node_modules/ packages/lib-sourcify/node_modules/ && npm install && npx lerna bootstrap && npx lerna run build",
"build:lerna": "lerna run build",
"test": "TESTING=true DOTENV_CONFIG_PATH=./environments/.env c8 mocha -r dotenv/config --exit",
"test": "TESTING=true DOTENV_CONFIG_PATH=./environments/.env c8 --reporter=none mocha -r dotenv/config --exit",
"test:monitor": "TESTING=true DOTENV_CONFIG_PATH=./environments/.env mocha test/monitor.js --exit",
"test:server": "TESTING=true DOTENV_CONFIG_PATH=./environments/.env mocha -r dotenv/config test/server.js --exit",
"test:chains": "TESTING=true mocha test/chains/chain-tests.js --reporter mochawesome --reporter-options reportDir=chain-tests-report,reportFilename=report --exit",
Expand Down
2 changes: 1 addition & 1 deletion packages/bytecode-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:unit": "c8 ava",
"test:unit": "c8 --reporter=none ava",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "c8 ava --watch",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
Expand Down
2 changes: 1 addition & 1 deletion packages/contract-call-decoder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:unit": "c8 ava",
"test:unit": "c8 --reporter=none ava",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "c8 ava --watch",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
Expand Down

0 comments on commit 922e92f

Please sign in to comment.