File tree Expand file tree Collapse file tree 5 files changed +595
-416
lines changed Expand file tree Collapse file tree 5 files changed +595
-416
lines changed Original file line number Diff line number Diff line change @@ -1156,6 +1156,9 @@ workflows:
1156
1156
- Setup sign certificates (stage)
1157
1157
- linux :
1158
1158
name : Build app - Linux (stage)
1159
+ env : stage
1160
+ redisstack : false
1161
+ target : AppImage
1159
1162
requires :
1160
1163
- Setup build (stage)
1161
1164
- docker :
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export default {
58
58
encryptionKey : process . env . RI_ENCRYPTION_KEY ,
59
59
tlsCert : process . env . RI_SERVER_TLS_CERT ,
60
60
tlsKey : process . env . RI_SERVER_TLS_KEY ,
61
- staticContent : ! ! process . env . RI_SERVE_STATICS || false ,
61
+ staticContent : ! ! process . env . RI_SERVE_STATICS || true ,
62
62
buildType : process . env . RI_BUILD_TYPE || 'DOCKER_ON_PREMISE' ,
63
63
appVersion : process . env . RI_APP_VERSION || '2.40.0' ,
64
64
requestTimeout : parseInt ( process . env . RI_REQUEST_TIMEOUT , 10 ) || 25000 ,
Original file line number Diff line number Diff line change 54
54
"redis" : " 3.1.1" ,
55
55
"sqlite3" : " ^5.1.6" ,
56
56
"supertest" : " ^4.0.2" ,
57
- "testcafe" : " 3.3 .0" ,
58
- "testcafe-browser-provider-electron" : " 0.0.19 " ,
57
+ "testcafe" : " 3.5 .0" ,
58
+ "testcafe-browser-provider-electron" : " 0.0.20 " ,
59
59
"testcafe-reporter-html" : " 1.4.6" ,
60
60
"testcafe-reporter-json" : " 2.2.0" ,
61
61
"testcafe-reporter-spec" : " 2.2.0" ,
Original file line number Diff line number Diff line change 1
1
import { Selector } from 'testcafe' ;
2
2
3
3
export class Toast {
4
- toastHeader = Selector ( '[data-test-subj=euiToastHeader]' ) ;
4
+ toastHeader = Selector ( '[data-test-subj=euiToastHeader]' , { timeout : 30000 } ) ;
5
5
toastBody = Selector ( '[class*=euiToastBody]' ) ;
6
6
toastSuccess = Selector ( '[class*=euiToast--success]' ) ;
7
- toastError = Selector ( '[class*=euiToast--danger]' ) ;
7
+ toastError = Selector ( '[class*=euiToast--danger]' , { timeout : 30000 } ) ;
8
8
toastCloseButton = Selector ( '[data-test-subj=toastCloseButton]' ) ;
9
9
toastSubmitBtn = Selector ( '[data-testid=submit-tooltip-btn]' ) ;
10
10
toastCancelBtn = Selector ( '[data-testid=toast-cancel-btn]' ) ;
You can’t perform that action at this time.
0 commit comments