diff --git a/x-pack/test/functional/apps/lens/group4/tsdb.ts b/x-pack/test/functional/apps/lens/group4/tsdb.ts index edbef46dc1f08c..3200c7a073dc43 100644 --- a/x-pack/test/functional/apps/lens/group4/tsdb.ts +++ b/x-pack/test/functional/apps/lens/group4/tsdb.ts @@ -384,8 +384,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); }); - // FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/163971 - describe.skip('for rolled up metric (downsampled)', () => { + describe('for rolled up metric (downsampled)', () => { it('defaults to average for rolled up metric', async () => { await PageObjects.lens.switchDataPanelIndexPattern(downsampleDataView.dataView); await PageObjects.lens.removeLayer(); @@ -622,21 +621,21 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { { index: 'regular_index', create: true, removeTSDBFields: true }, ], }, - // { - // name: 'Dataview with an additional downsampled TSDB stream', - // indexes: [ - // { index: initialIndex }, - // { index: 'tsdb_index_2', create: true, tsdb: true, downsample: true }, - // ], - // }, - // { - // name: 'Dataview with additional regular index and a downsampled TSDB stream', - // indexes: [ - // { index: initialIndex }, - // { index: 'regular_index', create: true, removeTSDBFields: true }, - // { index: 'tsdb_index_2', create: true, tsdb: true, downsample: true }, - // ], - // }, + { + name: 'Dataview with an additional downsampled TSDB stream', + indexes: [ + { index: initialIndex }, + { index: 'tsdb_index_2', create: true, tsdb: true, downsample: true }, + ], + }, + { + name: 'Dataview with additional regular index and a downsampled TSDB stream', + indexes: [ + { index: initialIndex }, + { index: 'regular_index', create: true, removeTSDBFields: true }, + { index: 'tsdb_index_2', create: true, tsdb: true, downsample: true }, + ], + }, { name: 'Dataview with an additional TSDB stream', indexes: [{ index: initialIndex }, { index: 'tsdb_index_2', create: true, tsdb: true }],