File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tests/e2e/pageObjects/components Expand file tree Collapse file tree 2 files changed +3
-3
lines changed 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 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