diff --git a/x-pack/test/functional/apps/dashboard/feature_controls/dashboard_security.ts b/x-pack/test/functional/apps/dashboard/feature_controls/dashboard_security.ts index 0dbbf1f0bba64..6a6e2f23785e3 100644 --- a/x-pack/test/functional/apps/dashboard/feature_controls/dashboard_security.ts +++ b/x-pack/test/functional/apps/dashboard/feature_controls/dashboard_security.ts @@ -185,8 +185,7 @@ export default function({ getPageObjects, getService }: FtrProviderContext) { await panelActions.expectExistsEditPanelAction(); }); - // https://github.com/elastic/kibana/issues/44631 - it.skip('allow saving via the saved query management component popover with no query loaded', async () => { + it('allow saving via the saved query management component popover with no query loaded', async () => { await savedQueryManagementComponent.saveNewQuery('foo', 'bar', true, false); await savedQueryManagementComponent.savedQueryExistOrFail('foo'); }); diff --git a/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts b/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts index 21884837969bb..1796858165a2b 100644 --- a/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts +++ b/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts @@ -100,8 +100,7 @@ export default function({ getPageObjects, getService }: FtrProviderContext) { await PageObjects.share.clickShareTopNavButton(); }); - // https://github.com/elastic/kibana/issues/45348 - it.skip('allow saving via the saved query management component popover with no query loaded', async () => { + it('allow saving via the saved query management component popover with no query loaded', async () => { await savedQueryManagementComponent.saveNewQuery('foo', 'bar', true, false); await savedQueryManagementComponent.savedQueryExistOrFail('foo'); }); diff --git a/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts b/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts index 945cf7c69246e..bdcdc4b7cd3ec 100644 --- a/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts +++ b/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts @@ -241,8 +241,7 @@ export default function({ getPageObjects, getService }: FtrProviderContext) { expect(queryString).to.eql('response:200'); }); - // https://github.com/elastic/kibana/issues/50018 - it.skip('does not allow saving via the saved query management component popover with no query loaded', async () => { + it('does not allow saving via the saved query management component popover with no query loaded', async () => { await savedQueryManagementComponent.saveNewQueryMissingOrFail(); });