@uuv/runner-commons 2.11.0 → 2.12.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,10 @@
|
|
|
1
|
+
# [2.12.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.11.0...runner-commons-v2.12.0) (2024-05-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* update package-lock for update dependency typescript to v5 ([f058481](https://github.com/Orange-OpenSource/uuv/commit/f058481e2ae75ba91e708a5c4dd8ce16c0f1a04f))
|
|
7
|
+
|
|
1
8
|
# [2.11.0](https://github.com/Orange-OpenSource/uuv/compare/runner-commons-v2.10.1...runner-commons-v2.11.0) (2024-04-22)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -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