diff --git a/test/functional/apps/discover/group3/_view_mode_toggle.ts b/test/functional/apps/discover/group3/_view_mode_toggle.ts index e284d57878ce9..62c78efbc2432 100644 --- a/test/functional/apps/discover/group3/_view_mode_toggle.ts +++ b/test/functional/apps/discover/group3/_view_mode_toggle.ts @@ -28,8 +28,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { defaultIndex: 'logstash-*', }; - // FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/172247 - describe.skip('discover view mode toggle', function () { + describe('discover view mode toggle', function () { before(async () => { await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader']); await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional'); diff --git a/x-pack/test/functional/apps/discover/value_suggestions.ts b/x-pack/test/functional/apps/discover/value_suggestions.ts index c17d4d803246c..8d0c0ac5a969a 100644 --- a/x-pack/test/functional/apps/discover/value_suggestions.ts +++ b/x-pack/test/functional/apps/discover/value_suggestions.ts @@ -25,8 +25,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { ); } - // FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/172248 - describe.skip('value suggestions', function describeIndexTests() { + describe('value suggestions', function describeIndexTests() { before(async function () { await kibanaServer.savedObjects.cleanStandardList(); await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional'); @@ -55,8 +54,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.common.navigateToApp('discover'); }); - // FLAKY: https://github.com/elastic/kibana/issues/172246 - describe.skip('discover', () => { + describe('discover', () => { afterEach(async () => { await queryBar.clearQuery(); });