testilo 42.3.1 → 43.0.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 +1 -1
- package/procs/score/{tic49.js → tic.js} +860 -205
- package/procs/score/{tsp49.js → tsp.js} +5 -5
- package/procs/score/tic45.js +0 -9346
- package/procs/score/tsp45.js +0 -390
- package/procs/score/tsp46.js +0 -423
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
©
|
|
2
|
+
© 2025 CVS Health and/or one of its affiliates. All rights reserved.
|
|
3
3
|
|
|
4
4
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
5
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -21,20 +21,20 @@
|
|
|
21
21
|
*/
|
|
22
22
|
|
|
23
23
|
/*
|
|
24
|
-
|
|
25
|
-
Testilo score proc
|
|
24
|
+
tsp
|
|
25
|
+
Testilo score proc
|
|
26
26
|
|
|
27
27
|
Computes target score data and adds them to a Testaro report.
|
|
28
28
|
*/
|
|
29
29
|
|
|
30
30
|
// IMPORTS
|
|
31
31
|
|
|
32
|
-
const {issues} = require('./
|
|
32
|
+
const {issues} = require('./tic');
|
|
33
33
|
|
|
34
34
|
// MISCELLANEOUS CONSTANTS
|
|
35
35
|
|
|
36
36
|
// ID of this proc.
|
|
37
|
-
const scoreProcID = '
|
|
37
|
+
const scoreProcID = 'tsp';
|
|
38
38
|
|
|
39
39
|
// WEIGHT CONSTANTS
|
|
40
40
|
|