testilo 16.0.2 → 16.0.3

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": "16.0.2",
3
+ "version": "16.0.3",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "aim.js",
6
6
  "scripts": {
@@ -51,7 +51,7 @@ const populateQuery = (report, query) => {
51
51
  history.forEach(event => {
52
52
  rows.historyRows.push(getScoreRow(... event));
53
53
  });
54
- query.scoreHistory = historyRows.join(innerJoiner);
54
+ query.scoreHistory = rows.historyRows.join(innerJoiner);
55
55
  // Sort the issue IDs in descending score order.
56
56
  const issueIDs = Object.keys(details.issue);
57
57
  issueIDs.sort((a, b) => details.issue[b].score - details.issue[a].score);