Skip to content

Commit

Permalink
feat: jest show coverage in console
Browse files Browse the repository at this point in the history
  • Loading branch information
sanyu1225 committed Dec 22, 2023
1 parent e0dd58f commit 4ee0117
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion adapters/aptos-wallet-adapter-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest",
"test": "jest --coverage=true --coverage-reporters=text",
"lint": "eslint src --ext .ts"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions adapters/rainbowkit-connector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest --coverage=true --coverage-reporters=text",
"lint": "eslint src --ext .ts"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/blocto-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"build": "NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"lint": "eslint --ext .js,.ts src/",
"test": "jest",
"test": "jest --coverage=true --coverage-reporters=text",
"prepublishOnly": "npm-run-all clean build",
"rollup-watch": "NODE_ENV=development rollup -c rollup.config.dev.js --watch",
"serve": "live-server --port=7777 --https=dev-cert/index.js dev",
Expand Down

0 comments on commit 4ee0117

Please sign in to comment.