File tree Expand file tree Collapse file tree 5 files changed +17
-16
lines changed
page-objects/components/editor-view Expand file tree Collapse file tree 5 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -345,14 +345,14 @@ workflows:
345
345
346
346
e2e-tests :
347
347
jobs :
348
- # - approve:
349
- # name: Start E2E Tests
350
- # type: approval
351
- # filters:
352
- # branches:
353
- # only:
354
- # - /^e2e/feature.*/
355
- # - /^e2e/bugfix.*/
348
+ - approve :
349
+ name : Start E2E Tests
350
+ type : approval
351
+ filters :
352
+ branches :
353
+ only :
354
+ - /^e2e/feature.*/
355
+ - /^e2e/bugfix.*/
356
356
357
357
- linux :
358
358
name : Build extension - Linux (stage)
@@ -362,6 +362,8 @@ workflows:
362
362
only :
363
363
- /^e2e/feature.*/
364
364
- /^e2e/bugfix.*/
365
+ requires :
366
+ - Start E2E Tests
365
367
366
368
- e2e-app-image :
367
369
name : E2ETest (linux)
@@ -474,7 +476,7 @@ workflows:
474
476
# e2e tests on linux build
475
477
- e2e-app-image :
476
478
name : E2ETest (linux)
477
- parallelism : 2
479
+ parallelism : 1
478
480
requires :
479
481
- Build extension - Linux (stage)
480
482
@@ -512,7 +514,7 @@ workflows:
512
514
# e2e desktop tests on linux build
513
515
- e2e-app-image :
514
516
name : E2ETest (Linux)
515
- parallelism : 2
517
+ parallelism : 1
516
518
requires :
517
519
- Build extension - Linux (prod)
518
520
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " redis-for-vscode" ,
3
- "version" : " 0.0.3 " ,
3
+ "version" : " 0.0.1 " ,
4
4
"displayName" : " Redis for VS Code" ,
5
5
"description" : " Visually interact with data and build queries in Redis" ,
6
6
"license" : " SEE LICENSE IN LICENSE" ,
Original file line number Diff line number Diff line change 1
1
import { By } from 'selenium-webdriver'
2
2
import { ButtonActions , InputActions } from '@e2eSrc/helpers/common-actions'
3
3
import { KeyDetailsView } from './KeyDetailsView'
4
+ import { CommonDriverExtension } from '@e2eSrc/helpers'
4
5
5
6
/**
6
7
* Base view for all keyTypes that have 2 columns value
@@ -34,6 +35,7 @@ export class DoubleColumnKeyDetailsView extends KeyDetailsView {
34
35
await ButtonActions . clickElement ( editLocator )
35
36
await InputActions . typeText ( editorLocator , value )
36
37
await ButtonActions . clickElement ( this . applyButton )
38
+ await CommonDriverExtension . driverSleep ( 300 )
37
39
}
38
40
39
41
/**
@@ -54,5 +56,6 @@ export class DoubleColumnKeyDetailsView extends KeyDetailsView {
54
56
await ButtonActions . clickElement ( editLocator )
55
57
await InputActions . slowType ( editorLocator , value )
56
58
await ButtonActions . clickElement ( this . applyButton )
59
+ await CommonDriverExtension . driverSleep ( 300 )
57
60
}
58
61
}
Original file line number Diff line number Diff line change @@ -27,15 +27,11 @@ import { InnerViews } from '@e2eSrc/page-objects/components/WebView'
27
27
let keyName : string
28
28
29
29
describe ( 'ZSet Key fields verification' , ( ) => {
30
- let bottomBar : BottomBar
31
- let bottomBarPanel : BottomBarPanel
32
30
let keyDetailsView : SortedSetKeyDetailsView
33
31
let treeView : TreeView
34
32
let addSortedSetKeyView : AddSortedSetKeyView
35
33
36
34
before ( async ( ) => {
37
- bottomBar = new BottomBar ( )
38
- bottomBarPanel = new BottomBarPanel ( )
39
35
keyDetailsView = new SortedSetKeyDetailsView ( )
40
36
treeView = new TreeView ( )
41
37
addSortedSetKeyView = new AddSortedSetKeyView ( )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import { VScodeScripts } from './helpers/scripts/vscodeScripts'
31
31
__dirname ,
32
32
'..' ,
33
33
'test-extensions' ,
34
- 'redis.redis-for-vscode-0.0.3 ' ,
34
+ 'redis.redis-for-vscode-0.0.1 ' ,
35
35
'dist' ,
36
36
'redis-backend' ,
37
37
'dist-minified' ,
You can’t perform that action at this time.
0 commit comments