Skip to content

Commit

Permalink
Skip save query tests
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 elastic#50018
Related elastic#44631
Related elastic#45348
  • Loading branch information
jbudz committed Feb 13, 2020
1 parent 3f3969d commit 8877aea
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 8877aea

Please sign in to comment.