testilo 42.3.0 → 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/tic50.js +7 -7
- 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
package/procs/score/tic50.js
CHANGED
|
@@ -50,6 +50,13 @@ exports.issues = {
|
|
|
50
50
|
wcag: '',
|
|
51
51
|
weight: 0,
|
|
52
52
|
tools: {
|
|
53
|
+
alfa: {
|
|
54
|
+
r73: {
|
|
55
|
+
variable: false,
|
|
56
|
+
quality: 1,
|
|
57
|
+
what: 'Text line height is not at least 1.5 [invalid]'
|
|
58
|
+
}
|
|
59
|
+
},
|
|
53
60
|
aslint: {
|
|
54
61
|
capital_letters_words: {
|
|
55
62
|
variable: false,
|
|
@@ -3329,13 +3336,6 @@ exports.issues = {
|
|
|
3329
3336
|
wcag: '1.4.8',
|
|
3330
3337
|
weight: 2,
|
|
3331
3338
|
tools: {
|
|
3332
|
-
alfa: {
|
|
3333
|
-
r73: {
|
|
3334
|
-
variable: false,
|
|
3335
|
-
quality: 1,
|
|
3336
|
-
what: 'Text line height is not at least 1.5'
|
|
3337
|
-
}
|
|
3338
|
-
},
|
|
3339
3339
|
testaro: {
|
|
3340
3340
|
lineHeight: {
|
|
3341
3341
|
variable: false,
|
|
@@ -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
|
|