From 431a1e9c894d0251da968a2dee65ac76da2e7b92 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Thu, 13 Feb 2020 13:30:22 -0600 Subject: [PATCH] Skip save query tests (#57589) Several tests using the savedQueryManagementComponent.saveNewQueryMissingOrFail method have been failing with 'waiting for element'. Temproary adding a skip for tests using this method Related #50018 Related #44631 Related #45348 --- .../apps/dashboard/feature_controls/dashboard_security.ts | 3 ++- .../apps/discover/feature_controls/discover_security.ts | 3 ++- .../apps/visualize/feature_controls/visualize_security.ts | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) 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 6a6e2f23785e3..0dbbf1f0bba64 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,7 +185,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) { await panelActions.expectExistsEditPanelAction(); }); - it('allow saving via the saved query management component popover with no query loaded', async () => { + // https://github.com/elastic/kibana/issues/44631 + it.skip('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 1796858165a2b..21884837969bb 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,7 +100,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) { await PageObjects.share.clickShareTopNavButton(); }); - it('allow saving via the saved query management component popover with no query loaded', async () => { + // https://github.com/elastic/kibana/issues/45348 + it.skip('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 bdcdc4b7cd3ec..945cf7c69246e 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,7 +241,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) { expect(queryString).to.eql('response:200'); }); - it('does not allow saving via the saved query management component popover with no query loaded', async () => { + // 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 () => { await savedQueryManagementComponent.saveNewQueryMissingOrFail(); });