mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
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
This commit is contained in:
parent
6b62f5a175
commit
431a1e9c89
3 changed files with 6 additions and 3 deletions
|
@ -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');
|
||||
});
|
||||
|
|
|
@ -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');
|
||||
});
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue