@eclipse-che/che-e2e 7.115.0-next-460bbeb → 7.115.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.
@@ -152,7 +152,6 @@ Classes must follow this order:
152
152
  ### Test File Conventions
153
153
 
154
154
  1. **Naming**
155
-
156
155
  - UI tests: `*.spec.ts` (e.g., `Factory.spec.ts`)
157
156
  - API-only tests: `*API.spec.ts` (e.g., `EmptyWorkspaceAPI.spec.ts`)
158
157
 
@@ -217,12 +216,10 @@ async function doSomething(param, timeout) {
217
216
  ```
218
217
 
219
218
  2. **Naming Conventions**
220
-
221
219
  - Variables: camelCase or UPPER_CASE
222
220
  - No leading/trailing underscores
223
221
 
224
222
  3. **String Quotes**
225
-
226
223
  - Use single quotes for strings
227
224
 
228
225
  4. **Comments**
package/CODE_STYLE.md CHANGED
@@ -28,7 +28,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
28
28
  ### Preferable code style
29
29
 
30
30
  1. Page-object and util classes
31
-
32
31
  1. ✔ Class declaration using dependency injection (inversify library)
33
32
 
34
33
  ```
@@ -38,7 +37,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
38
37
  ```
39
38
 
40
39
  2. Public methods
41
-
42
40
  - ✔ Declare public methods without "public "keyword
43
41
  - ✔ Add Logger.debug() inside method to log its name (with optional message)
44
42
 
@@ -51,7 +49,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
51
49
  ```
52
50
 
53
51
  3. Locators
54
-
55
52
  - ✔ For static locators - private static readonly fields type of By
56
53
 
57
54
  ```
@@ -105,7 +102,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
105
102
  ```
106
103
 
107
104
  2. Mocha framework
108
-
109
105
  - ✔ TDD framework (`suite()`, `test()`)
110
106
  - ✔ Inject class instances, declare all test data inside test `suit()` function to avoid unnecessary code execution if test suit will not be run
111
107
 
@@ -122,7 +118,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
122
118
  - ✔ Use test [./constants](constants) to make test flexible
123
119
 
124
120
  3. Packages
125
-
126
121
  1. Add packages as dev dependencies
127
122
  2. If any changes re-create package-lock.json before push
128
123
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-che/che-e2e",
3
- "version": "7.115.0-next-460bbeb",
3
+ "version": "7.115.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -66,7 +66,8 @@
66
66
  "dependencies": {
67
67
  "@eclipse-che/api": "latest",
68
68
  "inversify": "6.0.1",
69
- "reflect-metadata": "0.1.13"
69
+ "reflect-metadata": "0.1.13",
70
+ "@eclipse-che/che-devworkspace-generator": "7.115.0"
70
71
  },
71
72
  "resolutions": {
72
73
  "minimist": "^1.2.5"