Skip to content

Commit

Permalink
Revert "skip flaky suite (#44631)"
Browse files Browse the repository at this point in the history
This reverts commit 6e4efdf.
  • Loading branch information
spalger committed Feb 14, 2020
1 parent f9be022 commit 5b3b136
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
const queryBar = getService('queryBar');
const savedQueryManagementComponent = getService('savedQueryManagementComponent');

// FLAKY: https://github.com/elastic/kibana/issues/44631
describe.skip('dashboard security', () => {
describe('dashboard security', () => {
before(async () => {
await esArchiver.load('dashboard/feature_controls/security');
await esArchiver.loadIfNeeded('logstash_functional');
Expand Down Expand Up @@ -186,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

0 comments on commit 5b3b136

Please sign in to comment.