testilo 35.1.1 → 35.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "35.1.1",
3
+ "version": "35.2.0",
4
4
  "description": "Prepares Testaro jobs and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
@@ -134,11 +134,14 @@ const populateQuery = (report, query) => {
134
134
  issueDetailRows.push(`<h5>Rule <code>${ruleID}</code></h5>`);
135
135
  issueDetailRows.push(`<p>Description: ${ruleData.what}</p>`);
136
136
  issueDetailRows.push(`<p>Count of instances: ${ruleData.complaints.countTotal}</p>`);
137
+ /*
138
+ This fails unless the caller handles such URLs and has compatible scored report URLs.
137
139
  const href = `${query.reportURL}?tool=${toolID}&rule=${ruleID}`;
138
140
  const detailLabel = `Issue ${issueSummary} tool ${toolID} rule ${ruleID} instance details`;
139
141
  issueDetailRows.push(
140
142
  `<p><a href="${href}" aria-label="${detailLabel}">Instance details</a></p>`
141
143
  );
144
+ */
142
145
  });
143
146
  });
144
147
  });