@uuv/cypress 2.13.1 → 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 CHANGED
@@ -1,3 +1,11 @@
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
+
1
9
  ## [2.13.1](https://github.com/Orange-OpenSource/uuv/compare/runner-cypress-v2.13.0...runner-cypress-v2.13.1) (2024-03-15)
2
10
 
3
11
 
@@ -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.1",
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",