File tree Expand file tree Collapse file tree
apps/machine_learning/anomaly_detection
services/machine_learning Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -271,8 +271,7 @@ export default function({ getService }: FtrProviderContext) {
271271 } ,
272272 ] ;
273273
274- // test failures, see #59354
275- describe . skip ( 'saved search' , function ( ) {
274+ describe ( 'saved search' , function ( ) {
276275 this . tags ( [ 'smoke' , 'mlqa' ] ) ;
277276 before ( async ( ) => {
278277 await esArchiver . load ( 'ml/farequote' ) ;
Original file line number Diff line number Diff line change @@ -17,7 +17,10 @@ export function MachineLearningNavigationProvider({
1717
1818 return {
1919 async navigateToMl ( ) {
20- return await PageObjects . common . navigateToApp ( 'ml' ) ;
20+ await retry . tryForTime ( 60 * 1000 , async ( ) => {
21+ await PageObjects . common . navigateToApp ( 'ml' ) ;
22+ await testSubjects . existOrFail ( 'mlPageOverview' , { timeout : 2000 } ) ;
23+ } ) ;
2124 } ,
2225
2326 async assertTabsExist ( tabTypeSubject : string , areaSubjects : string [ ] ) {
You can’t perform that action at this time.
0 commit comments