msthd-scorer
v1.0.2
Published
MSTHD Scorer is a Node.js library for scoring test results.
Downloads
4
Readme
MSTHD Scorer
MSTHD is a Node.js library for scoring test results. It allows users to calculate total points from test outcomes and provides color highlighting based on the score value.
Installation
You can install Test Score Analyzer via npm:
npm install msthd-scorer
Usage
package.json
...,
"scripts": {
"test": "jest"
},
"jest": {
"reporters": [
"default",
"msthd-scorer"
]
},
...