@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
|
|
|
@@ -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
|
|
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
|
|
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
|
|
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`);
|
package/package.json
CHANGED