Skip to content

Commit cfbf086

Browse files
committed
fixes Failing ES Promotion: X-Pack API Integration Tests x-pack/test/api_integration/apis/maps/get_grid_tile.js
1 parent 5d4c880 commit cfbf086

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

x-pack/test/api_integration/apis/maps/get_grid_tile.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ function findFeature(layer, callbackFn) {
2121
export default function ({ getService }) {
2222
const supertest = getService('supertest');
2323

24-
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/149068
25-
describe.skip('getGridTile', () => {
24+
describe('getGridTile', () => {
2625
const URL = `/api/maps/mvt/getGridTile/3/2/3.pbf\
2726
?geometryFieldName=geo.coordinates\
2827
&hasLabels=false\
@@ -152,13 +151,13 @@ export default function ({ getService }) {
152151
// assert feature geometry is hex
153152
expect(gridFeature.loadGeometry()).to.eql([
154153
[
155-
{ x: 111, y: 698 },
156154
{ x: 89, y: 710 },
157155
{ x: 67, y: 696 },
158156
{ x: 67, y: 669 },
159157
{ x: 89, y: 657 },
160158
{ x: 112, y: 672 },
161159
{ x: 111, y: 698 },
160+
{ x: 89, y: 710 },
162161
],
163162
]);
164163
});

0 commit comments

Comments
 (0)