@uuv/runner-commons 2.11.0 → 2.13.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,22 @@
1
+ # [2.13.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.12.0...runner-commons-v2.13.0) (2024-05-10)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **runner-playwright:** update dependency axe-core to v4.9.1 ([770cd9f](https://github.com/Orange-OpenSource/uuv/commit/770cd9f8e4d87d64c2875dd9e629b3e6c6ad1931))
7
+
8
+
9
+ ### Features
10
+
11
+ * **runner-cypress:** update dependency junit-report-merger to v7 ([7a9e310](https://github.com/Orange-OpenSource/uuv/commit/7a9e310dc192081c5feec543f2dca94468b34230))
12
+
13
+ # [2.12.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.11.0...runner-commons-v2.12.0) (2024-05-02)
14
+
15
+
16
+ ### Features
17
+
18
+ * update package-lock for update dependency typescript to v5 ([f058481](https://github.com/Orange-OpenSource/uuv/commit/f058481e2ae75ba91e708a5c4dd8ce16c0f1a04f))
19
+
1
20
  # [2.11.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.10.1...runner-commons-v2.11.0) (2024-04-22)
2
21
 
3
22
 
@@ -11,6 +11,7 @@
11
11
  * Software description: Make test writing fast, understandable by any human
12
12
  * understanding English or French.
13
13
  */
14
+ /// <reference types="node" />
14
15
  import fs from "fs";
15
16
  import { AccessibleRole } from "./accessible-role";
16
17
  export { fs };
@@ -74,12 +74,12 @@ var TEST_RUNNER_ENUM;
74
74
  (function (TEST_RUNNER_ENUM) {
75
75
  TEST_RUNNER_ENUM["CYPRESS"] = "cypress";
76
76
  TEST_RUNNER_ENUM["PLAYWRIGHT"] = "playwright";
77
- })(TEST_RUNNER_ENUM = exports.TEST_RUNNER_ENUM || (exports.TEST_RUNNER_ENUM = {}));
77
+ })(TEST_RUNNER_ENUM || (exports.TEST_RUNNER_ENUM = TEST_RUNNER_ENUM = {}));
78
78
  var STEP_DEFINITION_FILE_NAME;
79
79
  (function (STEP_DEFINITION_FILE_NAME) {
80
80
  STEP_DEFINITION_FILE_NAME["BASE"] = "base-check-engine";
81
81
  STEP_DEFINITION_FILE_NAME["BY_ROLE"] = "based-role-check-engine";
82
- })(STEP_DEFINITION_FILE_NAME = exports.STEP_DEFINITION_FILE_NAME || (exports.STEP_DEFINITION_FILE_NAME = {}));
82
+ })(STEP_DEFINITION_FILE_NAME || (exports.STEP_DEFINITION_FILE_NAME = STEP_DEFINITION_FILE_NAME = {}));
83
83
  var KEY_PRESS;
84
84
  (function (KEY_PRESS) {
85
85
  KEY_PRESS["TAB"] = "{tab}";
@@ -88,7 +88,7 @@ var KEY_PRESS;
88
88
  KEY_PRESS["DOWN"] = "{down}";
89
89
  KEY_PRESS["LEFT"] = "{left}";
90
90
  KEY_PRESS["RIGHT"] = "{right}";
91
- })(KEY_PRESS = exports.KEY_PRESS || (exports.KEY_PRESS = {}));
91
+ })(KEY_PRESS || (exports.KEY_PRESS = KEY_PRESS = {}));
92
92
  class Common {
93
93
  static buildDirIfNotExists(directory) {
94
94
  console.log(`[CREATE] ${directory} CREATE successfully`);
@@ -5,4 +5,4 @@ var LANG;
5
5
  (function (LANG) {
6
6
  LANG["FR"] = "fr";
7
7
  LANG["EN"] = "en";
8
- })(LANG = exports.LANG || (exports.LANG = {}));
8
+ })(LANG || (exports.LANG = LANG = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uuv/runner-commons",
3
- "version": "2.11.0",
3
+ "version": "2.13.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 common lib for uuv",