testilo 3.11.1 → 3.11.2
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/package.json +1 -1
- package/procs/score/sp16a.js +7 -0
package/package.json
CHANGED
package/procs/score/sp16a.js
CHANGED
|
@@ -6083,6 +6083,13 @@ exports.scorer = async report => {
|
|
|
6083
6083
|
addDetail('testaro', which, score);
|
|
6084
6084
|
}
|
|
6085
6085
|
}
|
|
6086
|
+
else if (which === 'nonTable') {
|
|
6087
|
+
const total = test.result && test.result.total;
|
|
6088
|
+
if (total) {
|
|
6089
|
+
// Add 2 per pseudotable.
|
|
6090
|
+
addDetail('testaro', which, 2 * total);
|
|
6091
|
+
}
|
|
6092
|
+
}
|
|
6086
6093
|
else if (which === 'radioSet') {
|
|
6087
6094
|
const totals = test.result && test.result.totals;
|
|
6088
6095
|
if (totals) {
|