Skip to content

Commit adc84bc

Browse files
committed
chore: Release 7.107.0
Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
1 parent d703e5d commit adc84bc

File tree

6 files changed

+9
-12
lines changed

6 files changed

+9
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ body:
3333
label: Che version
3434
description: if workspace is running, version can be obtained with help/about menu
3535
options:
36-
- "7.106@latest"
36+
- "7.107@latest"
3737
- "next (development version)"
38+
- "7.106"
3839
- "7.105"
3940
- "7.104"
4041
- "7.103"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.107.0-next
1+
7.107.0

tests/e2e/CODE_STYLE.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
2828
### Preferable code style
2929

3030
1. Page-object and util classes
31-
3231
1. ✔ Class declaration using dependency injection (inversify library)
3332

3433
```
@@ -38,7 +37,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
3837
```
3938
4039
2. Public methods
41-
4240
- ✔ Declare public methods without "public "keyword
4341
- ✔ Add Logger.debug() inside method to log its name (with optional message)
4442
@@ -51,7 +49,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
5149
```
5250
5351
3. Locators
54-
5552
- ✔ For static locators - private static readonly fields type of By
5653
5754
```
@@ -105,7 +102,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
105102
```
106103
107104
2. Mocha framework
108-
109105
- ✔ TDD framework (`suite()`, `test()`)
110106
- ✔ Inject class instances, declare all test data inside test `suit()` function to avoid unnecessary code execution if test suit will not be run
111107
@@ -122,7 +118,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
122118
- ✔ Use test [./constants](constants) to make test flexible
123119
124120
3. Packages
125-
126121
1. Add packages as dev dependencies
127122
2. If any changes re-create package-lock.json before push
128123

tests/e2e/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/e2e/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-che/che-e2e",
3-
"version": "7.107.0-next",
3+
"version": "7.107.0",
44
"description": "",
55
"main": "dist/index.js",
66
"scripts": {
@@ -66,7 +66,8 @@
6666
"dependencies": {
6767
"@eclipse-che/api": "latest",
6868
"inversify": "6.0.1",
69-
"reflect-metadata": "0.1.13"
69+
"reflect-metadata": "0.1.13",
70+
"@eclipse-che/che-devworkspace-generator": "7.107.0"
7071
},
7172
"resolutions": {
7273
"minimist": "^1.2.5"

tests/e2e/pageobjects/git-providers/OauthPage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class OauthPage {
5050
OauthPage.DENY_ACCESS_BUTTON = By.xpath('//span[text()="Deny"]');
5151
}
5252
break;
53-
case GitProviderType.BITBUCKET_CLOUD_OAUTH2:
53+
case GitProviderType.BITBUCKET_CLOUD_OAUTH2:
5454
{
5555
OauthPage.LOGIN_FORM = By.css('[data-testid="username"]');
5656
OauthPage.PASSWORD_FORM = By.id('password');

0 commit comments

Comments
 (0)