testilo 19.1.3 → 19.1.4

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": "19.1.3",
3
+ "version": "19.1.4",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "aim.js",
6
6
  "scripts": {
@@ -95,7 +95,7 @@ exports.scorer = report => {
95
95
  // Add this to the score.
96
96
  details.prevention[which] = preventionWeight;
97
97
  }
98
- // Otherwise, if a successful standard result exists:
98
+ // Otherwise, if a valid standard result exists:
99
99
  else if (
100
100
  standardResult
101
101
  && standardResult.totals
@@ -125,6 +125,7 @@ exports.scorer = report => {
125
125
  // Add the instance to the issue details of the score data.
126
126
  if (! details.issue[issueName]) {
127
127
  details.issue[issueName] = {
128
+ summary: issues[issueName].summary,
128
129
  score: 0,
129
130
  maxCount: 0,
130
131
  weight: issues[issueName].weight,