Skip to content

Commit

Permalink
skip flaky suite (#50018)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Feb 13, 2020
1 parent 64625b2 commit b058dc2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
const queryBar = getService('queryBar');
const savedQueryManagementComponent = getService('savedQueryManagementComponent');

describe('feature controls security', () => {
// FLAKY: https://github.com/elastic/kibana/issues/50018
describe.skip('feature controls security', () => {
before(async () => {
await esArchiver.load('visualize/default');
await esArchiver.loadIfNeeded('logstash_functional');
Expand Down Expand Up @@ -241,8 +242,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 b058dc2

Please sign in to comment.