@uuv/cypress 2.4.1 → 2.5.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [2.5.0](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v2.4.1...runner-cypress-v2.5.0) (2024-01-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **a11y:** add RGAA 1.1.6 and 1.1.3, [#429](https://github.com/Orange-OpenSource/uuv/issues/429) ([0e65889](https://github.com/Orange-OpenSource/uuv/commit/0e65889b479651c27e16c29fdb8e5123fe689f03))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **runner-playwright:** update dependency axe-core to v4.8.3 ([4623485](https://github.com/Orange-OpenSource/uuv/commit/46234851677cf0e5f0479fe30bc786ae2a607f1e))
|
|
12
|
+
|
|
1
13
|
## [2.4.1](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v2.4.0...runner-cypress-v2.4.1) (2024-01-21)
|
|
2
14
|
|
|
3
15
|
|
|
@@ -117,7 +117,7 @@ function logNonCompliantNode(reference, ruleResult) {
|
|
|
117
117
|
function logNodeToCheckManually(reference, ruleResult) {
|
|
118
118
|
const nodesToCheckManually = ruleResult.getNodesToCheckManually();
|
|
119
119
|
const log = buildCypressLog(`${reference.name} to validate manually !`, `criteria ${ruleResult.rule.criterion} on ${nodesToCheckManually.length} nodes`, getConsoleDetails(reference, ruleResult, nodesToCheckManually));
|
|
120
|
-
nodesToCheckManually.forEach(nodeToCheck => log.set({ $el: (0, jquery_1.default)(nodeToCheck.node) }).snapshot());
|
|
120
|
+
nodesToCheckManually.forEach(nodeToCheck => log.set({ $el: (0, jquery_1.default)(nodeToCheck.node.domNode) }).snapshot());
|
|
121
121
|
log.finish();
|
|
122
122
|
}
|
|
123
123
|
function getConsoleDetails(reference, ruleResult, nodes) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/cypress",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
6
|
"description": "A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and cypress",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"@badeball/cypress-cucumber-preprocessor": "16.0.3",
|
|
47
47
|
"@cypress/webpack-preprocessor": "5.17.1",
|
|
48
48
|
"@testing-library/cypress": "9.0.0",
|
|
49
|
-
"@uuv/a11y": "1.0.0-beta.
|
|
50
|
-
"@uuv/runner-commons": "2.
|
|
51
|
-
"axe-core": "4.8.
|
|
49
|
+
"@uuv/a11y": "1.0.0-beta.6",
|
|
50
|
+
"@uuv/runner-commons": "2.5.0",
|
|
51
|
+
"axe-core": "4.8.3",
|
|
52
52
|
"chai-subset": "^1.6.0",
|
|
53
53
|
"chalk": "4.1.2",
|
|
54
54
|
"cucumber-json-report-formatter": "0.1.4",
|