Skip to content

Commit 431a1e9

Browse files
authored
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
1 parent 6b62f5a commit 431a1e9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

x-pack/test/functional/apps/dashboard/feature_controls/dashboard_security.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
185185
await panelActions.expectExistsEditPanelAction();
186186
});
187187

188-
it('allow saving via the saved query management component popover with no query loaded', async () => {
188+
// https://github.com/elastic/kibana/issues/44631
189+
it.skip('allow saving via the saved query management component popover with no query loaded', async () => {
189190
await savedQueryManagementComponent.saveNewQuery('foo', 'bar', true, false);
190191
await savedQueryManagementComponent.savedQueryExistOrFail('foo');
191192
});

x-pack/test/functional/apps/discover/feature_controls/discover_security.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
100100
await PageObjects.share.clickShareTopNavButton();
101101
});
102102

103-
it('allow saving via the saved query management component popover with no query loaded', async () => {
103+
// https://github.com/elastic/kibana/issues/45348
104+
it.skip('allow saving via the saved query management component popover with no query loaded', async () => {
104105
await savedQueryManagementComponent.saveNewQuery('foo', 'bar', true, false);
105106
await savedQueryManagementComponent.savedQueryExistOrFail('foo');
106107
});

x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
241241
expect(queryString).to.eql('response:200');
242242
});
243243

244-
it('does not allow saving via the saved query management component popover with no query loaded', async () => {
244+
// https://github.com/elastic/kibana/issues/50018
245+
it.skip('does not allow saving via the saved query management component popover with no query loaded', async () => {
245246
await savedQueryManagementComponent.saveNewQueryMissingOrFail();
246247
});
247248

0 commit comments

Comments
 (0)