@uuv/a11y 0.0.1 → 1.0.0-beta.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.
Files changed (84) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/README.md +265 -68
  3. package/bundle/uuv-a11y.bundle.js +2 -2
  4. package/dist/CHANGELOG.md +51 -0
  5. package/dist/README.md +265 -68
  6. package/dist/index.d.ts +1 -1
  7. package/dist/index.js +17 -17
  8. package/dist/lib/engine/engine.d.ts +12 -12
  9. package/dist/lib/engine/engine.js +123 -123
  10. package/dist/lib/index.d.ts +3 -3
  11. package/dist/lib/index.js +19 -19
  12. package/dist/lib/model/checker.d.ts +14 -14
  13. package/dist/lib/model/checker.js +35 -35
  14. package/dist/lib/model/index.d.ts +4 -4
  15. package/dist/lib/model/index.js +20 -20
  16. package/dist/lib/model/reference.d.ts +55 -55
  17. package/dist/lib/model/reference.js +66 -66
  18. package/dist/lib/model/result.d.ts +57 -57
  19. package/dist/lib/model/result.js +144 -144
  20. package/dist/lib/model/rule.d.ts +99 -99
  21. package/dist/lib/model/rule.js +53 -53
  22. package/dist/lib/query/00-query.d.ts +4 -4
  23. package/dist/lib/query/00-query.js +2 -2
  24. package/dist/lib/query/accessible-name.query.d.ts +8 -8
  25. package/dist/lib/query/accessible-name.query.js +34 -34
  26. package/dist/lib/query/by-role.query.d.ts +8 -8
  27. package/dist/lib/query/by-role.query.js +27 -27
  28. package/dist/lib/query/by-tag.query.d.ts +7 -7
  29. package/dist/lib/query/by-tag.query.js +20 -20
  30. package/dist/lib/query/doctype.query.d.ts +5 -5
  31. package/dist/lib/query/doctype.query.js +15 -15
  32. package/dist/lib/query/form.query.d.ts +8 -8
  33. package/dist/lib/query/form.query.js +87 -87
  34. package/dist/lib/query/index.d.ts +6 -6
  35. package/dist/lib/query/index.js +22 -22
  36. package/dist/lib/reference/alix/alix-checker.js +82 -82
  37. package/dist/lib/reference/alix/alix-rules.js +1028 -1028
  38. package/dist/lib/reference/alix/index.js +3 -3
  39. package/dist/lib/reference/index.d.ts +1 -1
  40. package/dist/lib/reference/index.js +18 -18
  41. package/dist/lib/reference/rgaa/common.d.ts +2 -2
  42. package/dist/lib/reference/rgaa/common.js +5 -5
  43. package/dist/lib/reference/rgaa/coverage/coverage-helper.d.ts +2 -2
  44. package/dist/lib/reference/rgaa/coverage/coverage-helper.js +100 -100
  45. package/dist/lib/reference/rgaa/coverage/coverage-statement.json +90 -90
  46. package/dist/lib/reference/rgaa/index.d.ts +2 -2
  47. package/dist/lib/reference/rgaa/index.js +18 -18
  48. package/dist/lib/reference/rgaa/rgaa-checker.d.ts +8 -8
  49. package/dist/lib/reference/rgaa/rgaa-checker.js +31 -31
  50. package/dist/lib/reference/rgaa/rgaa-reference.d.ts +2 -2
  51. package/dist/lib/reference/rgaa/rgaa-reference.js +44 -44
  52. package/dist/lib/reference/rgaa/rgaa_4.1.criteres.json +4144 -4144
  53. package/dist/lib/reference/rgaa/rules/1-image.d.ts +14 -14
  54. package/dist/lib/reference/rgaa/rules/1-image.js +644 -644
  55. package/dist/lib/reference/rgaa/rules/10-display.d.ts +2 -2
  56. package/dist/lib/reference/rgaa/rules/10-display.js +3 -3
  57. package/dist/lib/reference/rgaa/rules/11-form.d.ts +14 -14
  58. package/dist/lib/reference/rgaa/rules/11-form.js +16 -16
  59. package/dist/lib/reference/rgaa/rules/12-navigation.d.ts +2 -2
  60. package/dist/lib/reference/rgaa/rules/12-navigation.js +3 -3
  61. package/dist/lib/reference/rgaa/rules/13-visit.d.ts +2 -2
  62. package/dist/lib/reference/rgaa/rules/13-visit.js +3 -3
  63. package/dist/lib/reference/rgaa/rules/2-frame.d.ts +14 -14
  64. package/dist/lib/reference/rgaa/rules/2-frame.js +34 -34
  65. package/dist/lib/reference/rgaa/rules/3-color.d.ts +14 -14
  66. package/dist/lib/reference/rgaa/rules/3-color.js +50 -50
  67. package/dist/lib/reference/rgaa/rules/4-multimedia.d.ts +2 -2
  68. package/dist/lib/reference/rgaa/rules/4-multimedia.js +3 -3
  69. package/dist/lib/reference/rgaa/rules/5-table.d.ts +2 -2
  70. package/dist/lib/reference/rgaa/rules/5-table.js +3 -3
  71. package/dist/lib/reference/rgaa/rules/6-link.d.ts +2 -2
  72. package/dist/lib/reference/rgaa/rules/6-link.js +3 -3
  73. package/dist/lib/reference/rgaa/rules/7-script.d.ts +2 -2
  74. package/dist/lib/reference/rgaa/rules/7-script.js +3 -3
  75. package/dist/lib/reference/rgaa/rules/8-required-element.d.ts +14 -14
  76. package/dist/lib/reference/rgaa/rules/8-required-element.js +78 -78
  77. package/dist/lib/reference/rgaa/rules/9-structure.d.ts +2 -2
  78. package/dist/lib/reference/rgaa/rules/9-structure.js +3 -3
  79. package/dist/lib/reference/rgaa/selector-helper.d.ts +17 -17
  80. package/dist/lib/reference/rgaa/selector-helper.js +33 -33
  81. package/dist/package.json +3 -1
  82. package/docs/diagram-a11y-rgaa.excalidraw +1654 -0
  83. package/docs/diagram-a11y-rgaa.png +0 -0
  84. package/package.json +3 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,59 @@
1
+ ## [1.0.0-beta.2](https://github.com/Orange-OpenSource/uuv/compare/a11y-v1.0.0-beta.1...a11y-v1.0.0-beta.2) (2024-01-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **a11y:** fix post first publish, [#330](https://github.com/Orange-OpenSource/uuv/issues/330) ([76cf65b](https://github.com/Orange-OpenSource/uuv/commit/76cf65ba219f6128c58ecdec608d3cb4fe72bcc9))
7
+ * **a11y:** update unpkg usage and stackblitz link, [#330](https://github.com/Orange-OpenSource/uuv/issues/330) ([6032415](https://github.com/Orange-OpenSource/uuv/commit/6032415fdf16ae1be23e96785e7c66b779d8cbf9))
8
+
9
+ ## 1.0.0-beta.1 (2024-01-08)
10
+
11
+
12
+ ### Features
13
+
14
+ * **a11y:** initialize @uuv/a11y lib, [#330](https://github.com/Orange-OpenSource/uuv/issues/330) ([3c27ac5](https://github.com/Orange-OpenSource/uuv/commit/3c27ac5a1698a407289123aac85e500508e2d8c6))
15
+ * add accessibility tab and arrows, [#166](https://github.com/Orange-OpenSource/uuv/issues/166) ([9b926cd](https://github.com/Orange-OpenSource/uuv/commit/9b926cd322049860a5f06810027dbeb7efe6d795))
16
+ * **assistant:** setting up electron, fixes [#132](https://github.com/Orange-OpenSource/uuv/issues/132) ([6d6e99c](https://github.com/Orange-OpenSource/uuv/commit/6d6e99cbbdb498e1d5f24a0386e52ae38fa1b161))
17
+ * **docs:** add autocompletion searchfield to steps definition page, [#255](https://github.com/Orange-OpenSource/uuv/issues/255) ([a0323ee](https://github.com/Orange-OpenSource/uuv/commit/a0323eec01a6351f9b60399398d145cb2bc86779))
18
+ * **runner-playwright:** add error details and screenshot to report, fixes [#110](https://github.com/Orange-OpenSource/uuv/issues/110) ([3c4a3cd](https://github.com/Orange-OpenSource/uuv/commit/3c4a3cd192b90242dd07bbdc4bb3ece780ee0c40))
19
+ * **runner-playwright:** add tags option for runner-playwright, [#416](https://github.com/Orange-OpenSource/uuv/issues/416) ([8787581](https://github.com/Orange-OpenSource/uuv/commit/87875818114bbf77ff4b35ff8ccb26d525eba450))
20
+ * **runner-playwright:** regenerate .spec when update, add or remove a .feature in open mode, [#236](https://github.com/Orange-OpenSource/uuv/issues/236) ([8a2599a](https://github.com/Orange-OpenSource/uuv/commit/8a2599a3fa4e577b9e626929537f2cc5f8e57bcc))
21
+ * setup assistant-electron package, [#132](https://github.com/Orange-OpenSource/uuv/issues/132) ([76d69c2](https://github.com/Orange-OpenSource/uuv/commit/76d69c2b5d311b40cb42c9511d224d7911133e10))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * **assistant:** fix assistant css problem, [#120](https://github.com/Orange-OpenSource/uuv/issues/120) ([026d66a](https://github.com/Orange-OpenSource/uuv/commit/026d66ad6ad7e9090282f1734335c5a7b1e417c6))
27
+ * **assistant:** moving test app in component ([5bdc75b](https://github.com/Orange-OpenSource/uuv/commit/5bdc75b9ae4aec75f7a944513af0d57a4107cefd))
28
+ * **deps:** update dependency @cucumber/cucumber to v9.3.0 ([212250b](https://github.com/Orange-OpenSource/uuv/commit/212250be47e040e34de18af33986a1f26f7b00a2))
29
+ * **deps:** update dependency @cucumber/cucumber to v9.6.0 ([d0ac7ca](https://github.com/Orange-OpenSource/uuv/commit/d0ac7ca26b3d9d1fddd17d7cb6c7034ff640e483))
30
+ * **deps:** update dependency @cucumber/cucumber to v9.6.0 ([52a3e4c](https://github.com/Orange-OpenSource/uuv/commit/52a3e4c14fbe3b87b9b7f97b56a3e437f71f36bf))
31
+ * **deps:** update dependency @cypress/webpack-preprocessor to v5.17.1 ([9570e56](https://github.com/Orange-OpenSource/uuv/commit/9570e5689387a2c770994576d779a34ff242ca76))
32
+ * **deps:** update dependency antd to v5.11.4 ([33a0cf4](https://github.com/Orange-OpenSource/uuv/commit/33a0cf4d6973e8bcc50c805a091b11deaa9afe72))
33
+ * **deps:** update dependency antd to v5.12.2 ([0c472ee](https://github.com/Orange-OpenSource/uuv/commit/0c472eef7a05ed343c6aa9576092ba001c9ffb00))
34
+ * **deps:** update dependency antd to v5.7.3 ([452fc3c](https://github.com/Orange-OpenSource/uuv/commit/452fc3c3861509e8aba46b3efa248f365bbfb747))
35
+ * **deps:** update dependency axe-core to v4.7.2 ([965b9dc](https://github.com/Orange-OpenSource/uuv/commit/965b9dcb1445c369c770ed056ab990e3f966197b))
36
+ * **deps:** update dependency axe-core to v4.8.2 ([66b7dc2](https://github.com/Orange-OpenSource/uuv/commit/66b7dc2fbd63a9d4429964abb50f63a88e06e99b))
37
+ * **deps:** update dependency cypress to v12.17.2 ([49a3012](https://github.com/Orange-OpenSource/uuv/commit/49a3012f7ebf0e6ecc879d21ff86147938967607))
38
+ * **deps:** update dependency cypress to v12.17.3 ([35c812b](https://github.com/Orange-OpenSource/uuv/commit/35c812bdabd1a3a2d27e972d3bb5c9323497c449))
39
+ * **deps:** update dependency cypress to v12.17.4 ([998b754](https://github.com/Orange-OpenSource/uuv/commit/998b754038941de8b035abbd47800d45b1dac022))
40
+ * **deps:** update dependency cypress-axe to v1.5.0 ([816775f](https://github.com/Orange-OpenSource/uuv/commit/816775f89ec46d385e3fb6d8322a70165c7e5ea5))
41
+ * **deps:** update dependency cypress-real-events to v1.10.1 ([f60978d](https://github.com/Orange-OpenSource/uuv/commit/f60978da4bdd76483bcb2479324ccbbf3b36d87b))
42
+ * **deps:** update dependency cypress-real-events to v1.10.3 ([9e3c991](https://github.com/Orange-OpenSource/uuv/commit/9e3c9914420c6d527f7ad8b0017a0f8e26250f86))
43
+ * **deps:** update dependency cypress-real-events to v1.11.0 ([1694807](https://github.com/Orange-OpenSource/uuv/commit/169480777dc4c87f14a2deb5c10beb9cb0e43238))
44
+ * **deps:** update dependency figlet to v1.7.0 ([8fbde74](https://github.com/Orange-OpenSource/uuv/commit/8fbde7405cef7576b1cd4151785be463a823e6ef))
45
+ * **deps:** update dependency multiple-cucumber-html-reporter to v3.5.0 ([b8a9dab](https://github.com/Orange-OpenSource/uuv/commit/b8a9dabed814d5cea192be9aeefdeb8af93249ce))
46
+ * **deps:** update dependency nanoid to v3.3.6 ([82fa0c3](https://github.com/Orange-OpenSource/uuv/commit/82fa0c31207a9004a8b365fe0e92fcaac38e1be3))
47
+ * **deps:** update dependency nanoid to v3.3.7 ([7d1d60e](https://github.com/Orange-OpenSource/uuv/commit/7d1d60e32fd7f799c61beaace586a9869791f55b))
48
+ * **deps:** update dependency primereact to v9.6.3 ([f52ee84](https://github.com/Orange-OpenSource/uuv/commit/f52ee84daccc1380586e2da95d10592f9dd87e8b))
49
+ * **deps:** update dependency primereact to v9.6.4 ([ed3e76c](https://github.com/Orange-OpenSource/uuv/commit/ed3e76c6da6af1d9c17f98e0802ffbb1a46124a4))
50
+ * **deps:** update dependency ts-node to v10.9.2 ([b5c5ebb](https://github.com/Orange-OpenSource/uuv/commit/b5c5ebbc1eb9556d66c9494d45b089018580ba70))
51
+ * **deps:** update dependency tslib to v2.6.2 ([f43d897](https://github.com/Orange-OpenSource/uuv/commit/f43d8972746b85a386320ad67b80d9c7aa7bc313))
52
+ * **deps:** update docusaurus monorepo to v2.4.1 ([9c0f5fb](https://github.com/Orange-OpenSource/uuv/commit/9c0f5fb6a641f54fc97d0940acfebdfb5106a790))
53
+ * **deps:** update docusaurus monorepo to v2.4.3 ([9e7ccf7](https://github.com/Orange-OpenSource/uuv/commit/9e7ccf78176e5b38da147d6d26097730c7859da8))
54
+ * prototype pollution in lodash - cve-2019-10744, [#219](https://github.com/Orange-OpenSource/uuv/issues/219) ([4b16741](https://github.com/Orange-OpenSource/uuv/commit/4b16741d53f814958ad0ee6d761e82d92374e5e8))
55
+ * release 1.4.0 package.json and rchangelog was not updated, [#117](https://github.com/Orange-OpenSource/uuv/issues/117) ([cd7723d](https://github.com/Orange-OpenSource/uuv/commit/cd7723d6d790dd5fd928a5d9d41bfd075159378a))
56
+ * **runner-cypress:** relocate cypress-real-events dependency into project package.json, [#213](https://github.com/Orange-OpenSource/uuv/issues/213) ([ffca8dd](https://github.com/Orange-OpenSource/uuv/commit/ffca8dd21d3858d0020f6bf1974437bbf38fe6c4))
57
+ * **runner-playwright:** fix workspace lint during ci, [#108](https://github.com/Orange-OpenSource/uuv/issues/108) ([a3ac0d6](https://github.com/Orange-OpenSource/uuv/commit/a3ac0d68d27c34f36237b6f74b94e160b7cde9b8))
58
+ * **runner-playwright:** regenerate package-lock.json to fix lint, [#109](https://github.com/Orange-OpenSource/uuv/issues/109) ([70044df](https://github.com/Orange-OpenSource/uuv/commit/70044dfd9efb2c6776a85cadd18966610d2d61f2))
59
+ * **runner-playwright:** update @cucumber/cucumber dep version, [#93](https://github.com/Orange-OpenSource/uuv/issues/93) ([a891a70](https://github.com/Orange-OpenSource/uuv/commit/a891a70daad1cb5d7d34f25097a31d89f92b92c6))
package/README.md CHANGED
@@ -68,7 +68,7 @@ The following references are available :
68
68
 
69
69
  For each criterion of the RGAA, the following algorithm is executed :
70
70
 
71
- ![Diagram a11Y RGAA](./docs/diagram-a11y-rgaa.png)
71
+ ![Diagram a11Y RGAA](https://unpkg.com/@uuv/a11y/docs/diagram-a11y-rgaa.png)
72
72
 
73
73
  **Consult [this page](https://orange-opensource.github.io/uuv/docs/tools/uuv-a11y#rgaa) to find out which RGAA verifications are implemented in the library**
74
74
  </p>
@@ -77,21 +77,21 @@ For each criterion of the RGAA, the following algorithm is executed :
77
77
  ### With UNPKG
78
78
  1. Add script tag to import @uuv/a11y in your html page :
79
79
  ```html
80
- <script src="https://unpkg.com/@uuv/a11y/dist/bundle/uuv-a11y.bundle.js">
80
+ <script src="https://unpkg.com/@uuv/a11y/bundle/uuv-a11y.bundle.js">
81
81
  </script>
82
82
  ```
83
83
  2. Add script tag to execute
84
84
  ```html
85
- <script>
86
- const rgaaChecker = new uuvA11y.RgaaChecker(url, enabledRules);
85
+ <script type="module">
86
+ const rgaaChecker = new uuvA11y.RgaaChecker(window.location.url);
87
87
  const result = await rgaaChecker.validate().toPromise();
88
88
  // Print complete result
89
- console.log(result);
89
+ console.log('result', result);
90
90
  // Print result summary group by criteria
91
- console.log(result.summary());
91
+ console.log('summary', result.summary());
92
92
  </script>
93
93
  ```
94
- [Stackblitz example](https://stackblitz.com/edit/web-platform-fihgra?file=index.html)
94
+ [Stackblitz example](https://stackblitz.com/edit/web-platform-fihgra?devToolsHeight=33&file=index.html)
95
95
 
96
96
  ### As a dependency
97
97
  1. Import @uuv/a11y npm dependency
@@ -113,72 +113,269 @@ For each criterion of the RGAA, the following algorithm is executed :
113
113
  // Print result summary group by criteria
114
114
  console.log(result.summary());
115
115
  ```
116
- ### During E2E Testing (recommended usage car visualisation des noeuds)
116
+ ### During E2E Testing (recommended usage because it allows DOM nodes to be visualized)
117
117
  1. add `@uuv/cypress` npm dependency :
118
118
  ```shell
119
119
  npm install --save-dev @uuv/cypress
120
120
  ```
121
- 2. create the file `uuv/e2e/a11y.feature` in the project root with the following content and replace url `https://e2e-test-quest.github.io/simple-webapp/a11y-test.html` by yours :
122
- ```gherkin
123
- Feature: A11y
124
-
125
- Scenario: Default RGAA
126
- When I visit path "https://e2e-test-quest.github.io/simple-webapp/a11y-test.html"
127
- Then I should not have any rgaa accessibility issue
128
-
129
- Scenario: RGAA with result
130
- When I visit path "https://e2e-test-quest.github.io/simple-webapp/a11y-test.html"
131
- Then I should have the following result based on the rgaa reference
132
- """json
133
- {
134
- "status": "error",
135
- "criteria": {
136
- "1.1": {
137
- "status": "error"
138
- },
139
- "1.2": {
140
- "status": "error"
141
- },
142
- "1.3": {
143
- "status": "manual"
144
- },
145
- "1.4": {
146
- "status": "manual"
147
- },
148
- "1.5": {
149
- "status": "manual"
150
- },
151
- "1.6": {
152
- "status": "success"
153
- },
154
- "2.1": {
155
- "status": "error"
156
- },
157
- "8.1": {
158
- "status": "error"
159
- },
160
- "8.3": {
161
- "status": "success"
162
- },
163
- "8.4": {
164
- "status": "manual"
165
- },
166
- "8.5": {
167
- "status": "error"
168
- },
169
- "8.6": {
170
- "status": "manual"
171
- },
172
- "8.10": {
173
- "status": "error"
174
- },
175
- "11.1": {
176
- "status": "success"
121
+ 2. create the file `uuv/e2e/a11y.feature` in the project root with the following content and replace url `https://e2e-test-quest.github.io/simple-webapp/a11y-test.html` by yours :
122
+ ```gherkin
123
+ Feature: A11y validation
124
+
125
+ Scenario: Default RGAA
126
+ When I visit path "https://e2e-test-quest.github.io/simple-webapp/a11y-test.html"
127
+ Then I should not have any rgaa accessibility issue
128
+
129
+ Scenario: RGAA with result
130
+ When I visit path "https://e2e-test-quest.github.io/simple-webapp/a11y-test.html"
131
+ Then I should have the following result based on the rgaa reference
132
+ """json
133
+ {
134
+ "status": "error",
135
+ "criteria": {
136
+ "1.1": {
137
+ "status": "error",
138
+ "tests" : {
139
+ "1.1.1": {
140
+ "status": "error"
141
+ },
142
+ "1.1.2": {
143
+ "status": "error"
144
+ },
145
+ "1.1.3": {
146
+ "status": "success"
147
+ },
148
+ "1.1.4": {
149
+ "status": "success"
150
+ },
151
+ "1.1.5": {
152
+ "status": "error"
153
+ },
154
+ "1.1.6": {
155
+ "status": "error"
156
+ },
157
+ "1.1.7": {
158
+ "status": "error"
159
+ },
160
+ "1.1.8": {
161
+ "status": "success"
162
+ }
163
+ }
164
+ },
165
+ "1.2": {
166
+ "status": "success",
167
+ "tests": {
168
+ "1.2.1": {
169
+ "status": "success"
170
+ },
171
+ "1.2.2": {
172
+ "status": "success"
173
+ },
174
+ "1.2.3": {
175
+ "status": "success"
176
+ },
177
+ "1.2.4": {
178
+ "status": "success"
179
+ },
180
+ "1.2.5": {
181
+ "status": "success"
182
+ },
183
+ "1.2.6": {
184
+ "status": "success"
185
+ }
186
+ }
187
+ },
188
+ "1.3": {
189
+ "status": "manual",
190
+ "tests": {
191
+ "1.3.1": {
192
+ "status": "manual"
193
+ },
194
+ "1.3.2": {
195
+ "status": "manual"
196
+ },
197
+ "1.3.3": {
198
+ "status": "manual"
199
+ },
200
+ "1.3.4": {
201
+ "status": "success"
202
+ },
203
+ "1.3.5": {
204
+ "status": "success"
205
+ },
206
+ "1.3.6": {
207
+ "status": "success"
208
+ },
209
+ "1.3.7": {
210
+ "status": "success"
211
+ },
212
+ "1.3.9": {
213
+ "status": "manual"
214
+ }
215
+ }
216
+ },
217
+ "1.4": {
218
+ "status": "manual",
219
+ "tests": {
220
+ "1.4.1": {
221
+ "status": "manual"
222
+ },
223
+ "1.4.2": {
224
+ "status": "manual"
225
+ },
226
+ "1.4.3": {
227
+ "status": "manual"
228
+ },
229
+ "1.4.4": {
230
+ "status": "success"
231
+ },
232
+ "1.4.5": {
233
+ "status": "success"
234
+ },
235
+ "1.4.6": {
236
+ "status": "success"
237
+ },
238
+ "1.4.7": {
239
+ "status": "success"
240
+ }
241
+ }
242
+ },
243
+ "1.5": {
244
+ "status": "manual",
245
+ "tests": {
246
+ "1.5.1": {
247
+ "status": "manual"
248
+ },
249
+ "1.5.2": {
250
+ "status": "manual"
251
+ }
252
+ }
253
+ },
254
+ "1.6": {
255
+ "status": "manual",
256
+ "tests": {
257
+ "1.6.1": {
258
+ "status": "success"
259
+ },
260
+ "1.6.2": {
261
+ "status": "success"
262
+ },
263
+ "1.6.3": {
264
+ "status": "success"
265
+ },
266
+ "1.6.4": {
267
+ "status": "success"
268
+ },
269
+ "1.6.5": {
270
+ "status": "success"
271
+ },
272
+ "1.6.6": {
273
+ "status": "success"
274
+ },
275
+ "1.6.7": {
276
+ "status": "success"
277
+ },
278
+ "1.6.8": {
279
+ "status": "success"
280
+ },
281
+ "1.6.9": {
282
+ "status": "manual"
283
+ },
284
+ "1.6.10": {
285
+ "status": "manual"
286
+ }
287
+ }
288
+ },
289
+ "2.1": {
290
+ "status": "error",
291
+ "tests": {
292
+ "2.1.1": {
293
+ "status": "error"
294
+ }
295
+ }
296
+ },
297
+ "2.2": {
298
+ "status": "manual",
299
+ "tests": {
300
+ "2.2.1": {
301
+ "status": "manual"
302
+ }
303
+ }
304
+ },
305
+ "3.1": {
306
+ "status": "manual",
307
+ "tests": {
308
+ "3.1.3": {
309
+ "status": "success"
310
+ },
311
+ "3.1.5": {
312
+ "status": "manual"
313
+ },
314
+ "3.1.6": {
315
+ "status": "manual"
316
+ }
317
+ }
318
+ },
319
+ "8.1": {
320
+ "status": "error",
321
+ "tests": {
322
+ "8.1.1": {
323
+ "status": "error"
324
+ }
325
+ }
326
+ },
327
+ "8.3": {
328
+ "status": "success",
329
+ "tests": {
330
+ "8.3.1": {
331
+ "status": "success"
332
+ }
333
+ }
334
+ },
335
+ "8.4": {
336
+ "status": "manual",
337
+ "tests": {
338
+ "8.4.1": {
339
+ "status": "manual"
340
+ }
341
+ }
342
+ },
343
+ "8.5": {
344
+ "status": "error",
345
+ "tests": {
346
+ "8.5.1": {
347
+ "status": "error"
348
+ }
349
+ }
350
+ },
351
+ "8.6": {
352
+ "status": "manual",
353
+ "tests": {
354
+ "8.6.1": {
355
+ "status": "manual"
356
+ }
357
+ }
358
+ },
359
+ "8.10": {
360
+ "status": "error",
361
+ "tests": {
362
+ "8.10.1": {
363
+ "status": "error"
364
+ }
365
+ }
366
+ },
367
+ "11.1": {
368
+ "status": "success",
369
+ "tests": {
370
+ "11.1.1": {
371
+ "status": "success"
372
+ }
373
+ }
374
+ }
375
+ }
177
376
  }
178
- }
179
- }
180
- """
181
- ```
377
+ """
378
+ ```
182
379
  3. Then execute your tests :
183
380
  ```shell
184
381
  npx uuv e2e