Skip to content

Commit

Permalink
Merge branch '7.x' into backport/7.x/pr-57510
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticmachine authored Feb 13, 2020
2 parents 6e1c0a6 + 0cc10f2 commit dc9e710
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('space with Advanced Settings disabled', () => {
// https://github.com/elastic/kibana/issues/57413
describe.skip('space with Advanced Settings disabled', () => {
before(async () => {
// we need to load the following in every situation as deleting
// a space deletes all of the associated saved objects
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
await PageObjects.timePicker.setDefaultAbsoluteRange();
}

describe('security', () => {
// FLAKY: https://github.com/elastic/kibana/issues/45348
describe.skip('security', () => {
before(async () => {
await esArchiver.load('discover/feature_controls/security');
await esArchiver.loadIfNeeded('logstash_functional');
Expand Down Expand Up @@ -100,8 +101,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 @@ -52,7 +52,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('space with Index Patterns disabled', () => {
// https://github.com/elastic/kibana/issues/57601
describe.skip('space with Index Patterns disabled', () => {
before(async () => {
// we need to load the following in every situation as deleting
// a space deletes all of the associated saved objects
Expand Down
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 dc9e710

Please sign in to comment.