testilo 12.0.2 → 12.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/script.js +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "12.0.2",
3
+ "version": "12.0.3",
4
4
  "description": "Client that scores and digests Testaro reports",
5
5
  "main": "aim.js",
6
6
  "scripts": {
package/script.js CHANGED
@@ -19,14 +19,11 @@ exports.script = (id, issueClasses, ... issueIDs) => {
19
19
  const neededTools = {};
20
20
  // For each specified issue:
21
21
  issueIDs.forEach(issueID => {
22
- console.log(`Processing ${issueID}`);
23
22
  // If it exists in the classification:
24
23
  const issueData = issueClasses[issueID];
25
24
  if (issueData) {
26
- console.log('It is in the classification');
27
25
  // For each tool that tests for the issue:
28
26
  const issueToolIDs = Object.keys(issueData.tools);
29
- console.log(`Tools with tests for it are ${issueToolIDs}`);
30
27
  issueToolIDs.forEach(issueToolID => {
31
28
  // For each of the tests of the tool for the issue:
32
29
  if (! neededTools[issueToolID]) {