@uuv/cypress 2.70.0 → 2.72.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 +22 -0
- package/dist/cypress/cypress.config.js +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# [2.72.0](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.71.0...runner-cypress-v2.72.0) (2025-11-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **runner-cypress:** update dependency @badeball/cypress-cucumber-preprocessor to v23 ([bae330c](https://github.com/e2e-test-quest/uuv/commit/bae330c62a48cbdf253130e346865b0aaa0cc82d))
|
|
7
|
+
* **runner-cypress:** update dependency @badeball/cypress-cucumber-preprocessor to v23 ([4e6df46](https://github.com/e2e-test-quest/uuv/commit/4e6df46a9585674478da2679549d8c29ea33c495))
|
|
8
|
+
|
|
9
|
+
# [2.71.0](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.70.0...runner-cypress-v2.71.0) (2025-10-26)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **assistant:** update dependency playwright-chromium to v1.56.1 ([b3b9e81](https://github.com/e2e-test-quest/uuv/commit/b3b9e81abacd0650c05079b5f3b61ced2660aae9))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **runner-cypress:** update dependency @cypress/webpack-preprocessor to v7 ([dfd0b8f](https://github.com/e2e-test-quest/uuv/commit/dfd0b8f204115ec0ce98b0741fb0de86bca8940d))
|
|
20
|
+
* **runner-cypress:** update dependency cypress to v15 ([551e899](https://github.com/e2e-test-quest/uuv/commit/551e89971dd46896dcfbae329d460ec1497cf31b))
|
|
21
|
+
* **runner-cypress:** update dependency junit-report-merger to v8 ([68e1b5d](https://github.com/e2e-test-quest/uuv/commit/68e1b5d733eb8505b520dab4faafa404dca2b194))
|
|
22
|
+
|
|
1
23
|
# [2.70.0](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.69.0...runner-cypress-v2.70.0) (2025-10-12)
|
|
2
24
|
|
|
3
25
|
|
|
@@ -95,8 +95,8 @@ async function setupNodeEvents(on, config) {
|
|
|
95
95
|
}
|
|
96
96
|
event_1.UUVEventEmitter.getInstance().emitProgressStart();
|
|
97
97
|
});
|
|
98
|
-
on("after:run", async () => {
|
|
99
|
-
await (0, cypress_cucumber_preprocessor_1.afterRunHandler)(config);
|
|
98
|
+
on("after:run", async (results) => {
|
|
99
|
+
await (0, cypress_cucumber_preprocessor_1.afterRunHandler)(config, results);
|
|
100
100
|
event_1.UUVEventEmitter.getInstance().emitProgressFinish();
|
|
101
101
|
});
|
|
102
102
|
on("before:spec", async (spec) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/cypress",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.72.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",
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
"lint": "eslint -c .eslintrc.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@badeball/cypress-cucumber-preprocessor": "
|
|
48
|
-
"@cypress/webpack-preprocessor": "
|
|
47
|
+
"@badeball/cypress-cucumber-preprocessor": "23.2.1",
|
|
48
|
+
"@cypress/webpack-preprocessor": "7.0.1",
|
|
49
49
|
"@testing-library/cypress": "10.1.0",
|
|
50
|
-
"@uuv/a11y": "1.0.0-beta.
|
|
51
|
-
"@uuv/runner-commons": "2.
|
|
50
|
+
"@uuv/a11y": "1.0.0-beta.84",
|
|
51
|
+
"@uuv/runner-commons": "2.66.0",
|
|
52
52
|
"axe-core": "4.11.0",
|
|
53
53
|
"chai-subset": "^1.6.0",
|
|
54
|
-
"cypress": "
|
|
54
|
+
"cypress": "15.5.0",
|
|
55
55
|
"cypress-axe": "1.7.0",
|
|
56
56
|
"cypress-real-events": "^1.10.0",
|
|
57
57
|
"dom-accessibility-api": "^0.7.0",
|
|
58
58
|
"is-admin": "4.0.0",
|
|
59
|
-
"junit-report-merger": "^
|
|
59
|
+
"junit-report-merger": "^8.0.0",
|
|
60
60
|
"lodash": "^4.17.21",
|
|
61
61
|
"multiple-cucumber-html-reporter": "3.9.3",
|
|
62
62
|
"path-browserify": "^1.0.1",
|