testilo 43.3.9 → 44.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/README.md +1 -1
- package/package.json +1 -1
- package/procs/analyze/axeFrac.js +6 -0
- package/procs/score/tic.js +1583 -48
- package/procs/util.js +2 -1
- package/script.js +1 -1
package/README.md
CHANGED
|
@@ -511,7 +511,7 @@ The built-in scoring functions are named `scorer()` and are exported by files wh
|
|
|
511
511
|
|
|
512
512
|
Those functions make use of `issues` objects defined in files whose names begin with `tic`. An `issues` object defines an issue classification: a body of data about rules of tools and the tool-agnostic issues that those rules are deemed to belong to.
|
|
513
513
|
|
|
514
|
-
The properties of an `issues` object are issue objects: objects containing data about issues. Here is an example from `
|
|
514
|
+
The properties of an `issues` object are issue objects: objects containing data about issues. Here is an example from `tic.js`:
|
|
515
515
|
|
|
516
516
|
```javascript
|
|
517
517
|
multipleLabelees: {
|
package/package.json
CHANGED
package/procs/analyze/axeFrac.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
© 2024 CVS Health and/or one of its affiliates. All rights reserved.
|
|
3
|
+
© 2025 Jonathan Robert Pool.
|
|
3
4
|
|
|
4
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -20,6 +21,11 @@
|
|
|
20
21
|
SOFTWARE.
|
|
21
22
|
*/
|
|
22
23
|
|
|
24
|
+
/*
|
|
25
|
+
axeFrac.js
|
|
26
|
+
This file was used for an estimate of the contribution of the axe tool to issue discoveries as a fraction of the contributions of all tools. It has not been updated to account for the nuVnu tool.
|
|
27
|
+
*/
|
|
28
|
+
|
|
23
29
|
// Test groups.
|
|
24
30
|
const groups = {
|
|
25
31
|
duplicateID: {
|