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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "3.11.1",
3
+ "version": "3.11.2",
4
4
  "description": "Client that scores and digests Testaro reports",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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) {