Skip to content

Commit

Permalink
Merge branch '7.x' into ua/deep_link_to_cloud_upgrade_modal
Browse files Browse the repository at this point in the history
  • Loading branch information
kibanamachine authored Oct 11, 2021
2 parents ec933c5 + e190acd commit 1b569bc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ describe('<FollowerIndicesList />', () => {
});
});

describe('detail panel', () => {
// FLAKY: https://github.com/elastic/kibana/issues/100951
describe.skip('detail panel', () => {
test('should open a detail panel when clicking on a follower index', async () => {
expect(exists('followerIndexDetail')).toBe(false);

Expand Down
4 changes: 3 additions & 1 deletion x-pack/test/api_integration/apis/maps/get_tile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ import { MVT_SOURCE_LAYER_NAME } from '../../../../plugins/maps/common/constants
export default function ({ getService }) {
const supertest = getService('supertest');

describe('getTile', () => {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/114471
// FLAKY: https://github.com/elastic/kibana/issues/114417
describe.skip('getTile', () => {
it('should return vector tile containing document', async () => {
const resp = await supertest
.get(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default function ({ getPageObjects, getService }) {
const PageObjects = getPageObjects(['maps']);
const security = getService('security');

describe('docvalue_fields', () => {
// FLAKY: https://github.com/elastic/kibana/issues/114418
describe.skip('docvalue_fields', () => {
before(async () => {
await security.testUser.setRoles(['global_maps_read', 'test_logstash_reader'], false);
await PageObjects.maps.loadSavedMap('document example');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ export default function ({ getService }: FtrProviderContext) {
const ml = getService('ml');
const browser = getService('browser');

describe('custom urls', function () {
// FLAKY: https://github.com/elastic/kibana/issues/106053
describe.skip('custom urls', function () {
this.tags(['mlqa']);
before(async () => {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/farequote');
Expand Down
13 changes: 6 additions & 7 deletions x-pack/test/functional/apps/visualize/reporting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,16 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
'visEditor',
]);

// Failing: See https://github.com/elastic/kibana/issues/113496
describe.skip('Visualize Reporting Screenshots', () => {
describe('Visualize Reporting Screenshots', () => {
before('initialize tests', async () => {
log.debug('ReportingPage:initTests');
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/reporting/ecommerce');
await kibanaServer.importExport.load(ecommerceSOPath);
await browser.setWindowSize(1600, 850);
await kibanaServer.uiSettings.replace({
'timepicker:timeDefaults':
'{ "from": "2019-04-27T23:56:51.374Z", "to": "2019-08-23T16:18:51.821Z"}',
});
});
after('clean up archives', async () => {
await esArchiver.unload('x-pack/test/functional/es_archives/reporting/ecommerce');
Expand All @@ -41,6 +44,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
refresh: true,
body: { query: { match_all: {} } },
});
await kibanaServer.uiSettings.unset('timepicker:timeDefaults');
});

describe('Print PDF button', () => {
Expand All @@ -54,11 +58,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});

it('becomes available when saved', async () => {
await PageObjects.timePicker.timePickerExists();
const fromTime = 'Apr 27, 2019 @ 23:56:51.374';
const toTime = 'Aug 23, 2019 @ 16:18:51.821';
await PageObjects.timePicker.setAbsoluteRange(fromTime, toTime);

await PageObjects.visEditor.clickBucket('X-axis');
await PageObjects.visEditor.selectAggregation('Date Histogram');
await PageObjects.visEditor.clickGo();
Expand Down

0 comments on commit 1b569bc

Please sign in to comment.