@uuv/cypress 2.55.0 → 2.56.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,12 @@
|
|
|
1
|
+
# [2.56.0](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.55.0...runner-cypress-v2.56.0) (2025-06-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **assistant:** fix assistant uuv test, [#1006](https://github.com/e2e-test-quest/uuv/issues/1006) ([d670572](https://github.com/e2e-test-quest/uuv/commit/d6705723ef7f6f94962b63d52788db721c80c2e2))
|
|
7
|
+
* **runner-cypress:** update dependency cypress to v14 ([d8f19ed](https://github.com/e2e-test-quest/uuv/commit/d8f19ed9b7bfa867bb96231e07b9a91edf1dae2c))
|
|
8
|
+
* update cypress to v14, nx to v21, eslint to v9 and move assitant builder to vite ([1db2aa7](https://github.com/e2e-test-quest/uuv/commit/1db2aa7930653af95dc2da27fcf8ef2e38cd737a))
|
|
9
|
+
|
|
1
10
|
# [2.55.0](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.54.0...runner-cypress-v2.55.0) (2025-05-11)
|
|
2
11
|
|
|
3
12
|
|
|
@@ -63,7 +63,6 @@ function addContextOptions(context, roleOptions) {
|
|
|
63
63
|
};
|
|
64
64
|
return Object.assign(roleOptions, retour);
|
|
65
65
|
}
|
|
66
|
-
/* eslint-disable @typescript-eslint/ban-types */
|
|
67
66
|
function abstractFindBy(callBackFunction, inputToSearch, inputOptions) {
|
|
68
67
|
return cy.uuvGetContext().then(context => {
|
|
69
68
|
// console.log(contextAlias, context);
|
|
@@ -11,6 +11,7 @@ const chalk_1 = __importDefault(require("chalk"));
|
|
|
11
11
|
const junit_report_merger_1 = require("junit-report-merger");
|
|
12
12
|
const multiple_cucumber_html_reporter_1 = __importDefault(require("multiple-cucumber-html-reporter"));
|
|
13
13
|
const cypress_1 = __importDefault(require("cypress"));
|
|
14
|
+
const utils_1 = require("@uuv/runner-commons/runner/utils");
|
|
14
15
|
class UUVCliCypressRunner {
|
|
15
16
|
projectDir;
|
|
16
17
|
name = "Cypress";
|
|
@@ -120,6 +121,7 @@ class UUVCliCypressRunner {
|
|
|
120
121
|
async generateHtmlReport(options, reportDir) {
|
|
121
122
|
console.info(chalk_1.default.blueBright("Generating Html Test Report..."));
|
|
122
123
|
this.generateHtmlReportFromJson(options, this.JSON_REPORT_DIR, reportDir);
|
|
124
|
+
(0, utils_1.updateChartJsVersion)(reportDir, "2.5.0", "2.6.0");
|
|
123
125
|
}
|
|
124
126
|
generateHtmlReportFromJson(options, jsonReportDir, htmlReportDir) {
|
|
125
127
|
const UNKNOWN_VALUE = "unknown";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/cypress",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.56.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",
|
|
@@ -40,18 +40,18 @@
|
|
|
40
40
|
"verify-report": "jest --runInBand --coverage --config=./jest.config.ts --testPathPattern=src/tests/report",
|
|
41
41
|
"e2e-test:run": "ts-node test.ts e2e",
|
|
42
42
|
"e2e-test:open": "ts-node test.ts open",
|
|
43
|
-
"test": "npm run unit-
|
|
44
|
-
"lint": "eslint -c .eslintrc.
|
|
43
|
+
"test": "npm run unit-tests && npm run e2e-test:run",
|
|
44
|
+
"lint": "eslint -c .eslintrc.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@badeball/cypress-cucumber-preprocessor": "
|
|
47
|
+
"@badeball/cypress-cucumber-preprocessor": "22.0.1",
|
|
48
48
|
"@cypress/webpack-preprocessor": "6.0.4",
|
|
49
49
|
"@testing-library/cypress": "10.0.3",
|
|
50
|
-
"@uuv/a11y": "1.0.0-beta.
|
|
51
|
-
"@uuv/runner-commons": "2.
|
|
50
|
+
"@uuv/a11y": "1.0.0-beta.70",
|
|
51
|
+
"@uuv/runner-commons": "2.50.0",
|
|
52
52
|
"axe-core": "4.10.3",
|
|
53
53
|
"chai-subset": "^1.6.0",
|
|
54
|
-
"cypress": "
|
|
54
|
+
"cypress": "14.4.0",
|
|
55
55
|
"cypress-axe": "1.6.0",
|
|
56
56
|
"cypress-real-events": "^1.10.0",
|
|
57
57
|
"is-admin": "4.0.0",
|