testilo 21.5.0 → 21.5.2

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/merge.js CHANGED
@@ -95,8 +95,8 @@ exports.merge = (script, batch, requester, isolate, standard, observe, timeStamp
95
95
  const creationTime = (new Date()).toISOString().slice(0, 16);
96
96
  // Initialize a target-independent job.
97
97
  const protoJob = JSON.parse(JSON.stringify(script));
98
- // Make the timestamp and a random string the ID of the job.
99
- protoJob.id = `${timeStamp}-${getRandomID(Number.parseInt(randomIDLength, 10))}`;
98
+ // Make the timestamp and a random string the start of the job ID.
99
+ protoJob.id = `${timeStamp}-${getRandomID(Number.parseInt(randomIDLength, 10))}-`;
100
100
  // Add a sources property to the job.
101
101
  protoJob.sources = {
102
102
  script: script.id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "21.5.0",
3
+ "version": "21.5.2",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "aim.js",
6
6
  "scripts": {
@@ -3,14 +3,14 @@
3
3
  // IMPORTS
4
4
 
5
5
  // Module to classify tool rules into issues
6
- const {issues} = require('../../score/tic38');
6
+ const {issues} = require('../../score/tic39');
7
7
  // Module to process files.
8
8
  const fs = require('fs/promises');
9
9
 
10
10
  // CONSTANTS
11
11
 
12
12
  // Digester ID.
13
- const id = 'tdp38';
13
+ const id = 'tdp39';
14
14
  // Newline with indentations.
15
15
  const innerJoiner = '\n ';
16
16