@uuv/cypress 2.13.0 → 2.13.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.
- package/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/dist/cypress/cypress.config.js +3 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [2.13.2](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v2.13.1...runner-cypress-v2.13.2) (2024-03-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix lint ([ac1084e](https://github.com/Orange-OpenSource/uuv/commit/ac1084e8dbbb1e08311af45b03a7ea3c1f1c0193))
|
|
7
|
+
* **runner-cypress:** disable bad lint autofix ([1e9d5ca](https://github.com/Orange-OpenSource/uuv/commit/1e9d5caa4433b1ea7418eedd6ea7013a5a265391))
|
|
8
|
+
|
|
9
|
+
## [2.13.1](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v2.13.0...runner-cypress-v2.13.1) (2024-03-15)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **runner-cypress:** update dependency @cypress/webpack-preprocessor to v6 ([2e9a52b](https://github.com/Orange-OpenSource/uuv/commit/2e9a52b2cc1bfb05e96c212cdec0fd644f41d02b))
|
|
15
|
+
|
|
1
16
|
# [2.13.0](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v2.12.1...runner-cypress-v2.13.0) (2024-03-11)
|
|
2
17
|
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ We can use the cypress engine(`@uuv/cypress`) to run test or playwright with [@u
|
|
|
64
64
|
|
|
65
65
|
## Benefits
|
|
66
66
|
- If used correctly, integrates accessibility from the development stage
|
|
67
|
-
- A living documentation is possible because we propose an unified language for developers and non-developers with a [rich dictionary](category/step-definition) of ready-to-use sentences
|
|
67
|
+
- A living documentation is possible because we propose an unified language for developers and non-developers with a [rich dictionary](https://orange-opensource.github.io/uuv/docs/category/step-definition) of ready-to-use sentences
|
|
68
68
|
- [@uuv/assistant](https://www.npmjs.com/package/@uuv/assistant) that facilitates the writing of tests by suggesting the most accessible sentences
|
|
69
69
|
- [JetBrains Plugin](https://orange-opensource.github.io/uuv/docs/tools/uuv-jetbrains-plugin) that helps you to write and execute your UUV E2E tests from JetBrains IDEs
|
|
70
70
|
- Integrates several runtime engines: Cypress / Playwright
|
|
@@ -71,7 +71,9 @@ async function setupNodeEvents(on, config) {
|
|
|
71
71
|
}));
|
|
72
72
|
on("before:run", async () => {
|
|
73
73
|
await (0, cypress_cucumber_preprocessor_1.beforeRunHandler)(config);
|
|
74
|
+
// eslint-disable-next-line dot-notation
|
|
74
75
|
const a11yReportFilePath = config.env["uuvA11yReportFilePath"];
|
|
76
|
+
// eslint-disable-next-line dot-notation
|
|
75
77
|
const generateA11yReport = config.env["generateA11yReport"];
|
|
76
78
|
clearA11yReport(a11yReportFilePath);
|
|
77
79
|
if (generateA11yReport === true) {
|
|
@@ -111,6 +113,7 @@ async function setupNodeEvents(on, config) {
|
|
|
111
113
|
logTeamCity(`##teamcity[testSuiteFinished ${teamcityAddName(spec.baseName)} ${teamcityFlowId(spec.baseName)}]`);
|
|
112
114
|
});
|
|
113
115
|
function logTeamCity(line) {
|
|
116
|
+
// eslint-disable-next-line dot-notation
|
|
114
117
|
if (config.env["enableTeamcityLogging"]) {
|
|
115
118
|
console.log(line);
|
|
116
119
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/cypress",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.2",
|
|
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",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@badeball/cypress-cucumber-preprocessor": "16.0.3",
|
|
46
|
-
"@cypress/webpack-preprocessor": "
|
|
46
|
+
"@cypress/webpack-preprocessor": "6.0.1",
|
|
47
47
|
"@testing-library/cypress": "10.0.1",
|
|
48
|
-
"@uuv/a11y": "1.0.0-beta.
|
|
49
|
-
"@uuv/runner-commons": "2.8.
|
|
48
|
+
"@uuv/a11y": "1.0.0-beta.19",
|
|
49
|
+
"@uuv/runner-commons": "2.8.2",
|
|
50
50
|
"axe-core": "4.8.4",
|
|
51
51
|
"chai-subset": "^1.6.0",
|
|
52
52
|
"chalk": "4.1.2",
|