Skip to content

Commit

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

Expand Down

0 comments on commit 8caa012

Please sign in to comment.