Revert "Skip save query tests (#57589)"

This reverts commit 431a1e9c89.
This commit is contained in:
spalger 2020-02-14 11:45:11 -07:00
parent e0c261c4a1
commit 8caa012f1f
3 changed files with 3 additions and 6 deletions

View file

@ -185,8 +185,7 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
await panelActions.expectExistsEditPanelAction();
});
// https://github.com/elastic/kibana/issues/44631
it.skip('allow saving via the saved query management component popover with no query loaded', async () => {
it('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');
});

View file

@ -100,8 +100,7 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
await PageObjects.share.clickShareTopNavButton();
});
// https://github.com/elastic/kibana/issues/45348
it.skip('allow saving via the saved query management component popover with no query loaded', async () => {
it('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');
});

View file

@ -241,8 +241,7 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
expect(queryString).to.eql('response:200');
});
// 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 () => {
it('does not allow saving via the saved query management component popover with no query loaded', async () => {
await savedQueryManagementComponent.saveNewQueryMissingOrFail();
});