diff --git a/x-pack/test/api_integration/apis/maps/get_grid_tile.js b/x-pack/test/api_integration/apis/maps/get_grid_tile.js index 0b3a454da814c..841c795a0d9a2 100644 --- a/x-pack/test/api_integration/apis/maps/get_grid_tile.js +++ b/x-pack/test/api_integration/apis/maps/get_grid_tile.js @@ -21,8 +21,7 @@ function findFeature(layer, callbackFn) { export default function ({ getService }) { const supertest = getService('supertest'); - // FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/149068 - describe.skip('getGridTile', () => { + describe('getGridTile', () => { const URL = `/api/maps/mvt/getGridTile/3/2/3.pbf\ ?geometryFieldName=geo.coordinates\ &hasLabels=false\ @@ -152,13 +151,13 @@ export default function ({ getService }) { // assert feature geometry is hex expect(gridFeature.loadGeometry()).to.eql([ [ - { x: 111, y: 698 }, { x: 89, y: 710 }, { x: 67, y: 696 }, { x: 67, y: 669 }, { x: 89, y: 657 }, { x: 112, y: 672 }, { x: 111, y: 698 }, + { x: 89, y: 710 }, ], ]); });