testilo 3.12.3 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +112 -37
- package/compare.js +7 -2
- package/digest.js +9 -3
- package/merge.js +72 -0
- package/package.json +1 -1
- package/procs/digest/dp16a/index.html +1 -1
- package/procs/digest/dp18a/index.html +80 -0
- package/procs/digest/dp18a/index.js +129 -0
- package/procs/score/sp16b.js +1 -1
- package/procs/score/sp18a.js +6378 -0
- package/score.js +7 -3
package/score.js
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
/*
|
|
2
2
|
score.js
|
|
3
|
-
|
|
3
|
+
Scores Testaro reports.
|
|
4
|
+
Reads reports in process.env.REPORTDIR_RAW and outputs into process.env.REPORTDIR_SCORED.
|
|
5
|
+
Arguments:
|
|
6
|
+
0. Base of name of score proc located in procs/score.
|
|
7
|
+
1?. Starting substring of names of reports in process.env.REPORTDIR_RAW.
|
|
4
8
|
Usage examples:
|
|
5
|
-
node score
|
|
6
|
-
node score
|
|
9
|
+
node score sp18a 35k1r (to score all reports with names starting with 35k1r)
|
|
10
|
+
node score sp18a (to score all reports)
|
|
7
11
|
*/
|
|
8
12
|
|
|
9
13
|
// ########## IMPORTS
|