Skip to content

Commit

Permalink
Skip save query tests (#57589)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jbudz committed Feb 13, 2020
1 parent 6b62f5a commit 431a1e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});

Expand Down

0 comments on commit 431a1e9

Please sign in to comment.