testilo 24.1.0 → 24.1.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/script.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "24.1.0",
3
+ "version": "24.1.1",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "aim.js",
6
6
  "scripts": {
package/script.js CHANGED
@@ -105,6 +105,8 @@ exports.script = (id, issues = null, ... issueIDs) => {
105
105
  const integers = ids.map(id => id.slice(prefixes[prefix].length));
106
106
  specs.push(`${prefix}:${integers.join(',')}`);
107
107
  });
108
+ // Replace the generic rule list with the QualWeb-format list.
109
+ toolAct.rules = specs;
108
110
  }
109
111
  // Otherwise, if the tool is Testaro:
110
112
  else if (toolID === 'testaro') {