File tree Expand file tree Collapse file tree
x-pack/test/functional/apps/ml/data_frame_analytics Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
1313 const ml = getService ( 'ml' ) ;
1414 const editedDescription = 'Edited description' ;
1515
16- // FLAKY: https://github.com/elastic/kibana/issues/142102
17- describe . skip ( 'classification creation' , function ( ) {
16+ describe ( 'classification creation' , function ( ) {
1817 before ( async ( ) => {
1918 await esArchiver . loadIfNeeded ( 'x-pack/test/functional/es_archives/ml/bm_classification' ) ;
2019 await ml . testResources . createIndexPatternIfNeeded ( 'ft_bank_marketing' , '@timestamp' ) ;
@@ -93,8 +92,7 @@ export default function ({ getService }: FtrProviderContext) {
9392 } ,
9493 ] ;
9594 for ( const testData of testDataList ) {
96- // FLAKY: https://github.com/elastic/kibana/issues/142102
97- describe . skip ( `${ testData . suiteTitle } ` , function ( ) {
95+ describe ( `${ testData . suiteTitle } ` , function ( ) {
9896 after ( async ( ) => {
9997 await ml . api . deleteIndices ( testData . destinationIndex ) ;
10098 await ml . testResources . deleteIndexPatternByTitle ( testData . destinationIndex ) ;
Original file line number Diff line number Diff line change @@ -15,9 +15,7 @@ export default function ({ getService }: FtrProviderContext) {
1515 const esArchiver = getService ( 'esArchiver' ) ;
1616 const ml = getService ( 'ml' ) ;
1717
18- // Failing: See https://github.com/elastic/kibana/issues/142151
19- // Failing: See https://github.com/elastic/kibana/issues/142118
20- describe . skip ( 'jobs cloning supported by UI form' , function ( ) {
18+ describe ( 'jobs cloning supported by UI form' , function ( ) {
2119 const testDataList : Array < {
2220 suiteTitle : string ;
2321 archive : string ;
Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
1313 const ml = getService ( 'ml' ) ;
1414 const editedDescription = 'Edited description' ;
1515
16- // FLAKY: https://github.com/elastic/kibana/issues/142083
17- describe . skip ( 'outlier detection creation' , function ( ) {
16+ describe ( 'outlier detection creation' , function ( ) {
1817 before ( async ( ) => {
1918 await esArchiver . loadIfNeeded ( 'x-pack/test/functional/es_archives/ml/ihp_outlier' ) ;
2019 await ml . testResources . createIndexPatternIfNeeded ( 'ft_ihp_outlier' , '@timestamp' ) ;
@@ -109,8 +108,7 @@ export default function ({ getService }: FtrProviderContext) {
109108 ] ;
110109
111110 for ( const testData of testDataList ) {
112- // FLAKY: https://github.com/elastic/kibana/issues/142083
113- describe . skip ( `${ testData . suiteTitle } ` , function ( ) {
111+ describe ( `${ testData . suiteTitle } ` , function ( ) {
114112 after ( async ( ) => {
115113 await ml . api . deleteIndices ( testData . destinationIndex ) ;
116114 await ml . testResources . deleteIndexPatternByTitle ( testData . destinationIndex ) ;
Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
1313 const ml = getService ( 'ml' ) ;
1414 const editedDescription = 'Edited description' ;
1515
16- // FLAKY: https://github.com/elastic/kibana/issues/142095
17- describe . skip ( 'regression creation' , function ( ) {
16+ describe ( 'regression creation' , function ( ) {
1817 before ( async ( ) => {
1918 await esArchiver . loadIfNeeded ( 'x-pack/test/functional/es_archives/ml/egs_regression' ) ;
2019 await ml . testResources . createIndexPatternIfNeeded ( 'ft_egs_regression' , '@timestamp' ) ;
@@ -87,8 +86,7 @@ export default function ({ getService }: FtrProviderContext) {
8786 ] ;
8887
8988 for ( const testData of testDataList ) {
90- // FLAKY: https://github.com/elastic/kibana/issues/142095
91- describe . skip ( `${ testData . suiteTitle } ` , function ( ) {
89+ describe ( `${ testData . suiteTitle } ` , function ( ) {
9290 after ( async ( ) => {
9391 await ml . api . deleteIndices ( testData . destinationIndex ) ;
9492 await ml . testResources . deleteIndexPatternByTitle ( testData . destinationIndex ) ;
Original file line number Diff line number Diff line change @@ -14,8 +14,7 @@ export default function ({ getService }: FtrProviderContext) {
1414 const esArchiver = getService ( 'esArchiver' ) ;
1515 const ml = getService ( 'ml' ) ;
1616
17- // Failing: See https://github.com/elastic/kibana/issues/142152
18- describe . skip ( 'results view content and total feature importance' , function ( ) {
17+ describe ( 'results view content and total feature importance' , function ( ) {
1918 const testDataList : Array < {
2019 suiteTitle : string ;
2120 archive : string ;
You can’t perform that action at this time.
0 commit comments